* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f4f8fb;
}

.main-bg {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a3d62 0%, #3c6382 100%);
    padding: 0 0 40px 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 0 16px;
}

.main-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    padding: 24px 32px 18px 32px;
    margin-bottom: 32px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.main-card h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a3d62;
}

.main-card .subtitle {
    color: #3c6382;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 0;
}

.button-row button {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: #2196F3;
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.button-row button:hover {
    background: #1769aa;
    transform: translateY(-2px) scale(1.03);
}

#generateReportBtnMain {
    background: #4CAF50;
}
#generateReportBtnMain:hover {
    background: #357a38;
}

#addToWatchlistBtn {
    background: #ff9800;
}
#addToWatchlistBtn:hover {
    background: #c66900;
}

#generateWatchlistReportBtn {
    background: #2196F3;
}
#generateWatchlistReportBtn:hover {
    background: #1769aa;
}

#viewPastReportsBtnMain {
    background: #9c27b0;
}
#viewPastReportsBtnMain:hover {
    background: #6d1b7b;
}

.section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    padding: 24px 20px 20px 20px;
    margin-bottom: 24px;
}

.section h2 {
    color: #0a3d62;
    margin-top: 0;
}

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #b0bec5;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

button[type="submit"] {
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #1769aa;
}

@media (max-width: 1000px) {
    .container { max-width: 98vw; }
    .watchlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .container { max-width: 100vw; }
    .watchlist-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.5rem; }
    .hero-logo { width: 56px; height: 56px; }
}

#watchlistResults, #reportsList {
    margin-top: 20px;
    padding: 0;
    background-color: transparent;
    border: none;
    display: grid;
    gap: 15px;
}

.watchlist-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.watchlist-item h3 {
    margin-top: 0;
    color: #0056b3;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.watchlist-item p {
    margin: 0;
    color: #555;
    font-size: 0.95em;
}

.watchlist-item a {
    color: #007bff;
    text-decoration: none;
}

.watchlist-item a:hover {
    text-decoration: underline;
}

.watchlist-item .delete-btn {
    background-color: #dc3545;
    align-self: flex-start;
    padding: 8px 15px;
    font-size: 0.9em;
}

.watchlist-item .delete-btn:hover {
    background-color: #c82333;
}

.loading {
    text-align: center;
    padding: 40px;
    background-color: #e9ecef;
    border-radius: 8px;
    margin: 20px auto;
    color: #007bff;
    font-size: 1.1em;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #cccccc;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.report-card {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #28a745;
}

.report-card h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #28a745;
}

.report-content {
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.report-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9em;
    text-align: right;
}

.error {
    background-color: #ffebee;
    border: 1px solid #ef9a9a;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.report-actions {
    text-align: center;
    margin-top: 20px;
}

.report-button {
    padding: 12px 25px;
    margin: 5px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out;
}

.report-button:hover {
    background-color: #218838;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.button-group button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button-group button:hover {
    background-color: #45a049;
}

#viewPastReportsBtn {
    background-color: #2196F3;
}

#viewPastReportsBtn:hover {
    background-color: #1976D2;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .section {
        padding: 20px;
    }

    input[type="email"],
    input[type="text"],
    button {
        font-size: 0.95em;
    }

    .watchlist-item {
        padding: 15px;
    }

    .report-card {
        padding: 20px;
    }
}

.greeting-header {
    display: block;
    background: #fffbe7;
    color: #0a3d62;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    padding: 18px 24px;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.01em;
}

#reportSection h3 {
    color: #2196F3;
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

#todaysReport, #pastReports {
    background: #f8fafd;
    border-radius: 10px;
    padding: 18px 16px 16px 16px;
    margin-bottom: 18px;
    box-shadow: 0 1px 6px rgba(44, 62, 80, 0.06);
}

#todaysReportContent, #pastReportsList {
    min-height: 40px;
}

.watchlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.watchlist-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
    padding: 0;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.watchlist-card:hover {
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18);
    transform: translateY(-2px) scale(1.02);
}
.card-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a3d62;
    background: #f4f8fb;
    border-bottom: 1px solid #e0e0e0;
}
.expand-icon {
    font-size: 1.2em;
    color: #2196F3;
    margin-left: 10px;
    transition: transform 0.2s;
}
.card-details {
    padding: 16px 20px 18px 20px;
    background: #fff;
    font-size: 1rem;
    color: #333;
    border-top: 1px solid #e0e0e0;
    animation: expandFade 0.3s;
}
@keyframes expandFade {
    from { opacity: 0; transform: scaleY(0.95); }
    to { opacity: 1; transform: scaleY(1); }
}
.watchlist-card .delete-btn {
    margin-top: 10px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
.watchlist-card .delete-btn:hover {
    background: #b71c1c;
}
@media (max-width: 1000px) {
    .watchlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .watchlist-grid {
        grid-template-columns: 1fr;
    }
}

/* Nav Bar and Hamburger */
.navbar {
    width: 100%;
    background: #0a3d62;
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 24px;
    position: relative;
}
.navbar-logo {
    width: 120px;
    height: 120px;
    padding: 28px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: block;
    margin-right: 14px;
}
.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-right: auto;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.navbar-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar-link:hover {
    color: #2196F3;
}
.navbar-hamburger {
    display: none;
    background: none;
    border: none;
    margin-left: 18px;
    cursor: pointer;
}

/* Hero Video */
.hero-video-wrapper { display: none !important; }

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a3d62;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    max-height: 600px;
    border-radius: 0;
    box-shadow: none;
    background: #000;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.video-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-overlay-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    width: 700px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-overlay video {
    width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    background: #000;
}
.close-video-btn {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #fff;
    color: #0a3d62;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,62,80,0.18);
    z-index: 10001;
}
.hero-video-btn {
    margin-top: 18px;
    padding: 12px 28px;
    font-size: 1.1rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.hero-video-btn:hover {
    background: #1769aa;
}

.main-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 8px;
}
.main-card-section {
    background: #f8fafd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    padding: 24px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}
.main-card-section h3 {
    color: #0a3d62;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 0.01em;
}
.main-card-section button {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #2196F3;
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0;
}
.main-card-section button:last-child {
    margin-bottom: 0;
}
.main-card-section button:hover {
    background: #1769aa;
    transform: translateY(-2px) scale(1.03);
}
#addFishBtn { background: #4CAF50; }
#addFishBtn:hover { background: #357a38; }
#generateReportByFishBtn { background: #2196F3; }
#generateReportByFishBtn:hover { background: #1769aa; }
#addToWatchlistBtn { background: #ff9800; }
#addToWatchlistBtn:hover { background: #c66900; }
#chooseLocationBtn { background: #9c27b0; }
#chooseLocationBtn:hover { background: #6d1b7b; }

@media (max-width: 900px) {
    .main-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .main-card-section {
        min-height: 120px;
    }
}

/* Fish Checklist Section Styles */
.fish-checklist-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    padding: 32px 24px 24px 24px;
    margin: 32px auto;
    max-width: 600px;
    text-align: left;
}
.fish-checklist-section h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #0a3d62;
    font-size: 1.5rem;
}
.fish-bulk-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.fish-bulk-buttons button {
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.fish-bulk-buttons button:hover {
    background: #1769aa;
}
.fish-checklist-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}
.fish-checklist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}
.fish-checklist-item:last-child {
    border-bottom: none;
}
.fish-checklist-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e9ecef;
    display: block;
}
.fish-checklist-label {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
}
.fish-checklist-label strong {
    color: #0a3d62;
}
.fish-checklist-label em {
    color: #3c6382;
    font-size: 0.95em;
}
#fishChecklistForm button[type="submit"] {
    margin-top: 12px;
    width: 100%;
    background: #4CAF50;
    font-size: 1.1rem;
}
#fishChecklistForm button[type="submit"]:hover {
    background: #357a38;
} 