<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e8f5e9; /* Softer background color */
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* Remove the screen-high shadows */
}
html {
    height: 100%;
}
.stats {
    background: white;
    padding: 10px 30px; /* Decrease free space inside the stats container */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly larger shadow */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-size: 1.2em; /* Increase font size for stats */
}
.stats h2 {
    margin: 0;
    font-size: 1.4em;
    color: #2E7D32;
    font-weight: bold;
}
.stats p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stats p span {
    font-weight: bold;
    color: #2E7D32; /* Highlight money values */
}
.cost-info span {
    font-weight: bold;
    color: #2E7D32; /* Highlight breeding and planting costs */
}
.container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    flex: 1;
    min-height: 0;
    overflow-x: auto; /* Allow horizontal scrolling */
}
.plant-inventory {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly larger shadow */
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    min-width: fit-content; /* Ensure the container fits the content */
}
.plant-inventory-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-right: 10px;
}
.plant-inventory-footer button {
    height: 40px;
    margin: 0;
    width: 120px;
    padding: 8px 16px;
    font-size: 1em;
    background-color: #ff5252;
}
.plant-inventory-footer button:hover {
    background-color: #ff1744;
}
.plant-inventory-footer button:disabled {
    background-color: #cccccc;
    opacity: 0.7;
}
#plants {
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    flex-wrap: nowrap;      /* Prevent horizontal wrapping */
    align-items: center;     /* Center cards horizontally */
    justify-content: flex-start; /* Align cards at the top so height is based on content */
    width: max-content;      /* Fixed width based on content */
    margin: 0 auto;          /* Center the container */
}
#plants::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.breeding-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly larger shadow */
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: fit-content; /* Ensure the container fits the content */
    max-width: 100%; /* Ensure container does not exceed parent width */
}
.field {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly larger shadow */
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: fit-content; /* Ensure the container fits the content */
    max-width: 100%; /* Ensure container does not exceed parent width */
}
.plant {
    border: 1px solid #ccc;
    padding: 2px 15px 2px 2px;
    margin: 5px 0; /* Adjust margin to ensure spacing between cards */
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow to plant cards */
    transition: none; /* Remove hover effect */
    height: auto; /* Ensure height depends only on content */
    flex-shrink: 0; /* Prevent card height from decreasing */
}
.plant:hover {
    transform: none; /* Remove hover effect */
}
.plant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(128, 235, 130, 0.8); /* Less transparent yield bar color */
    transition: width 0.1s ease;
    z-index: 1;
}
.plant::after {
    content: '';
    position: absolute;
    top: 0;
    left: var(--selected-yield-width, 0);
    width: 2px;
    height: 100%;
    border-left: 2px dotted #4CAF50; /* Green dotted line */
    display: none;
    z-index: 1; /* Below all elements in the card */
}
.plant:not(.selected)::after {
    display: block;
}
.plant.selected::after {
    display: none;
}
.plant.yield-unknown::after {
    display: none; /* Hide line for unknown yield */
}
.plant.yield-unknown::before {
    background: repeating-linear-gradient(
        45deg,
        rgba(200, 255, 200, 0.5),
        rgba(200, 255, 200, 0.5) 10px,
        rgba(255, 255, 255, 0.5) 10px,
        rgba(255, 255, 255, 0.5) 20px
    );
    width: 100%;
}
.plant.yield-unknown {
    background-color: #d0f0d0; /* Change background color for unexplored plants */
}
.plant &gt; * {
    position: relative;
    z-index: 2;
}
.plant-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px; /* Round corners of plant images */
}
.plant-content {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}
.plant.selected {
    border: 2px solid #4CAF50;
    background-color: #f0f7f0;
}
.field-spot {
    width: 100px;
    height: 100px;
    border: 2px dashed #666;
    margin: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: top;
    background-color: #f5f5f5;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow to field and breeding slots */
    transition: none; /* Remove hover effect */
    cursor: pointer; /* Added to match other interactive elements */
}
.field-spot:hover {
    transform: none; /* Remove hover effect */
}
.field-spot.occupied {
    border: 2px solid #4CAF50;
    background-color: #e8f5e9;
}
button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow to buttons */
    transition: background-color 0.1s ease; /* Keep background color transition */
    text-align: center; /* ensure button titles are centered */
}
button:hover {
    background-color: #45a049;
    transform: none; /* Remove hover effect */
}
button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}
.button-group button {
    width: 50px; /* Adjust width for bigger emojis */
    height: 50px; /* Adjust height for bigger emojis */
    padding: 0; /* Remove padding */
    font-size: 1.5em; /* Increase font size for emojis */
    display: flex;
    align-items: center;
    justify-content: center;
}
.breeding-slots {
    display: flex;
    gap: 20px;
    margin: 10px 0; /* Add more free space above and below breeding spots */
    justify-content: center; /* Center slots in their containers */
}
.breeding-slot {
    width: 100px;
    height: 100px;
    border: 2px dashed #666;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow to field and breeding slots */
    transition: none; /* Remove hover effect */
}
.breeding-slot:hover {
    transform: none; /* Remove hover effect */
}
.breeding-slot.selected {
    border: 2px solid #4CAF50;
    background-color: #e8f5e9;
}
.breeding-slot p {
    margin: 0 0 5px 0;
    font-weight: bold;
}
.slot-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Larger shadow for notifications */
    z-index: 1000;
    text-align: center;
    min-width: 300px;
}
.notification h3 {
    margin-top: 0;
    color: #2E7D32;
}
.notification p {
    margin: 10px 0;
    font-size: 1.1em;
}
.notification p span {
    font-weight: bold;
    color: #ff6347; /* Highlight values in pop-up messages */
}
.notification button {
    margin-top: 10px;
}
.notification .highlight {
    font-weight: bold;
    color: #2E7D32; /* Match the highlight color used in stats */
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.cost-info {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0 15px 0;
}
.yield-bar-container {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    margin-top: 5px;
    overflow: hidden;
}
.yield-bar {
    height: 100%;
    background-color: rgba(76, 175, 80, 0.8); /* Make yield bar color less transparent */
    border-radius: 6px;
    transition: width 0.1s ease;
}
.round-progress {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.round-progress::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: white;
    z-index: 1;
}
.round-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 var(--progress), transparent 0);
    transition: --progress 0.1s ease;
}
.round-progress-value {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
}
.round-progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.final-message {
    max-width: 600px;
    text-align: left;
    line-height: 1.6;
}
.final-message h3 {
    color: #2E7D32;
    text-align: center;
    margin-bottom: 20px;
}
.final-stats {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow to final stats */
}
.final-ps {
    border-left: 3px solid #4CAF50;
    padding-left: 15px;
    margin-top: 20px;
    font-style: italic;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1); /* Add inner shadow to final PS */
}
.breeding-section button {
    height: 50px;
    margin: 0;
}
.breeding-section-footer, .field-section-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.breeding-section-footer button, .field-section-footer button {
    height: 50px;
    margin: 0;
    width: 200px;
    padding: 10px 20px;
    font-size: 1em;
}
.gene-display {
    display: flex;
    gap: 8px;
    font-size: 1.2em;
    flex-wrap: nowrap; /* Prevent wrapping */
    font-family: 'Courier New', Courier, monospace; /* Use a monospace font */
}
.gene {
    box-sizing: border-box; /* Added to include borders in fixed width */
    background: white;
    padding: 7px 2px;
    border-radius: 50px;
    border: 1px solid #ddd;
    width: 6ch; /* Fixed width for alignment across cards */
    text-align: center;
}
.game-title {
    text-align: center;
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.game-title span {
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 10px;
}
.plant-inventory h2, .breeding-section h2, .field h2 {
    margin: 10px 0; /* Reduce space above and below titles */
}
.plant-inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.field-spots {
    display: flex;
    justify-content: center; /* Center slots horizontally */
    align-items: center; /* Center slots vertically */
    gap: 10px;
    margin-bottom: 0;
    flex: 1;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breeding-section-footer {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center the button */
    margin-top: 20px;
}
.field-section-footer {
    display: flex;
    justify-content: center; /* Center slots in their containers */
    margin-top: 20px;
}
.highlight {
    font-weight: bold;
    color: #ff6347; /* Tomato color for highlighting */
}
.plant-filters {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.allele-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0px;
    justify-content: center;
}
#filter-alleles .allele-filter {
    width: 20px;    /* decreased size */
    height: 20px;   /* decreased size */
    font-size: 0.8em; /* adjusted font size */
}
#filter-alleles {
    display: flex;
    justify-content: center; /* center filtering emojis horizontally */
}
#delete-button {
    background-color: rgb(255, 54, 54); /* make delete button red */
    text-align: center;    /* center the button title */
}
#filter-alleles .allele-filter,
.allele-filter {
    width: 20px;    /* decreased size */
    height: 20px;   /* decreased size */
    font-size: 0.8em; /* adjusted font size */
}
.allele-filter {
    font-size: 0.9em; /* Reduced font size */
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: #f5f5f5;
    width: 25px;
    height: 25px;
    margin: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1px; /* Reduced padding */
    user-select: none;
}
.allele-filter.active1 {
    background-color: #adf6ad; /* Indicate single allele filter */
}
.allele-filter.active2 {
    background-color: #54c754; /* Indicate both alleles filter */
}
.button-group {
    display: flex;
    gap: 10px; /* decreased gap */
}
.gene.hidden {
    width: 6ch;      /* Force same fixed width as revealed genes */
    padding: 7px 2px;      /* Remove extra padding */
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50px;
    text-align: center;
}
.gene.transcribe-active {
    /* Highlight to indicate genes can be clicked in transcription mode */
    background-color: #fffae6;
    border: 2px dashed #f0ad4e;
}
#transcribe-button.active {
    background-color: #f0ad4e;  /* Example active color */
    border-color: #f0ad4e;
}
#notes-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1001;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
}
#notes-container h3 {
    margin-top: 0;
}
.note-gene {
    margin-bottom: 15px;
}
.note-gene .allele-item {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.note-gene .allele-item button {
    margin: 0 2px;
    padding: 2px 6px;
    font-size: 0.8em;
}
.close-notes {
    display: block;
    margin: 10px auto 0;
    padding: 6px 12px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* Dark overlay for the modal */
#notes-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Allele Ranking Modal Adjustments */
#notes-container .note-gene .allele-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Fixed container width */
    margin-right: 10px;
}

#notes-container .note-gene .allele-item &gt; span.emoji {
    font-size: 2em; /* Bigger allele emoji */
    display: block;
    text-align: center;
    width: 100%;
}

#notes-container .note-gene .allele-item button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Button spans the container width */
    font-size: 1em; /* Consistent label size */
    padding: 2px 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* Ensure close button remains centered */
#notes-container .close-notes {
    display: block;
    margin: 20px auto 0;
}

/* Updated Allele Ranking Modal Adjustments */
#notes-container .note-gene .allele-item {
    position: relative;
    display: inline-block;
    width: 70px;    /* Slightly smaller container size */
    height: 70px;
    margin-right: 10px;
    cursor: pointer; /* Change cursor to indicate clickability */
}

#notes-container .note-gene .allele-main {
    font-size: 3em;  /* Slightly smaller allele emoji */
    display: block;
    text-align: center;
    line-height: 70px; /* vertically centered in container */
}

#notes-container .note-gene .allele-label-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 1.7em;   /* Slightly larger badge size */
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 36px;  /* Fixed width for circle */
    height: 36px; /* Fixed height for circle */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;  /* Ensure click is handled by parent */
}

/* Ensure close button remains centered */
#notes-container .close-notes {
    display: block;
    margin: 20px auto 0;
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto; /* Adjust rows for single column */
    }
    .plant-inventory {
        grid-row: 3; /* Move plant inventory below field */
    }
    .field {
        grid-row: 2; /* Ensure field is above plant inventory */
    }
    .breeding-section {
        grid-row: 1; /* Ensure breeding section is at the top */
    }
}
</pre></body></html>