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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link.active {
    color: #4CAF50;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.notification-icon:hover {
    color: #4CAF50;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.user-profile {
    cursor: pointer;
}

.profile-circle {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.profile-circle svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    height: 600px; /* Change to 100vh if full screen needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/hero-backgroud_img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Gradient overlay on image */
.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.6) 0%,
        rgba(74, 124, 42, 0.6) 50%,
        rgba(168, 230, 207, 0.6) 100%
    );
}

/* Decorative wave overlay (optional – kept from your design) */
.hero-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,400 Q300,350 600,400 T1200,400 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: bottom;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: #2d5016;
    border: 2px solid #4a7c2a;
}

.btn-secondary:hover {
    background: #f0f8f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }
}


/* Statistics Section */
.statistics {
    padding: 80px 0;
    background-color: #fff;
}

.statistics-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15);
    border: 1px solid #e8f5e9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.25);
    border-color: #4a7c2a;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.3);
    color: white;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    font-size: 14px;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        height: 550px;
    }

    .hero-title {
        font-size: 42px;
    }

    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }

    .nav-left {
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .logo-image {
        height: 55px;
    }

    .hero {
        height: 500px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }

    .statistics {
        padding: 60px 0;
    }

    .statistics-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 25px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .navbar {
        flex-direction: row;
        padding: 10px 15px;
        flex-wrap: nowrap;
    }

    .nav-left {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        flex-shrink: 0;
    }

    .logo-image {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .nav-right {
        gap: 15px;
    }

    .notification-icon {
        width: 20px;
        height: 20px;
    }

    .profile-circle {
        width: 35px;
        height: 35px;
    }

    .profile-circle svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        height: 450px;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 25px;
        font-size: 15px;
    }

    .statistics {
        padding: 50px 0;
    }

    .statistics-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .statistics-grid {
        padding: 0 15px;
        gap: 18px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer p {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 13px;
    }

    .nav-link {
        font-size: 12px;
        padding: 5px 6px;
    }

    .stat-number {
        font-size: 24px;
    }

    /* Match Result Responsive */
    .match-result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .match-found-title {
        font-size: 22px;
    }

    .match-animal-image-container {
        height: 200px;
    }

    .match-animal-placeholder {
        font-size: 80px;
    }

    .match-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .match-detail-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .match-detail-item:last-child {
        border-bottom: none;
    }

    .verification-status {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Animal Profile Responsive */
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-image-section {
        height: 250px;
    }

    .profile-animal-placeholder {
        font-size: 80px;
    }

    .profile-card {
        padding: 15px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }

    .detail-row .detail-value {
        text-align: left;
        font-size: 15px;
    }
}

/* Page Styles */
.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-top: 30px;
}

/* Register Page Styles */
.register-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.register-form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.photo-upload-box {
    position: relative;
}

.photo-input {
    display: none;
}

.photo-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.photo-label:hover {
    border-color: #4CAF50;
    background-color: #f0f8f0;
}

.upload-icon {
    width: 40px;
    height: 40px;
    color: #999;
    margin-bottom: 10px;
}

.upload-text {
    color: #666;
    font-size: 14px;
}

.preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.preview-image.active {
    display: block !important;
    z-index: 10;
    background: white;
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-generate {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
}

/* Photo Guidelines */
.photo-guidelines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guideline-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guideline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.guideline-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.guideline-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.good-icon {
    background-color: #4CAF50;
    color: white;
}

.bad-icon {
    background-color: #f44336;
    color: white;
}

.guideline-image {
    margin-bottom: 15px;
}

.guideline-example-image {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background: #f5f5f5;
}

.placeholder-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.good-placeholder {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.bad-placeholder {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.guideline-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Identify Page Styles */
.identify-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.identify-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.capture-container {
    max-width: 100%;
}

.camera-preview {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    background: #000;
    background-image: url('/assets/pattern-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

#video,
#canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

#canvas:empty {
    background-image: url('/assets/pattern-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bounding-box {
    position: absolute;
    border: 3px solid #4CAF50;
    border-radius: 8px;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}

.camera-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.capture-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.uploaded-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.uploaded-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.camera-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.capture-instructions {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.capture-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.capture-status {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.results-section {
    margin-top: 30px;
    padding: 0;
    background: transparent;
    border-radius: 10px;
}

.results-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Match Result Styles */
.match-result-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.match-result-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.match-found-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.confidence-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.match-result-card {
    padding: 0;
}

.match-animal-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.match-animal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-animal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.match-status-banner {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.match-status-text {
    font-size: 20px;
    font-weight: 700;
}

.match-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px;
    background: white;
}

.match-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f0f8f0;
    border-top: 1px solid #e0e0e0;
    color: #4CAF50;
    font-weight: 600;
}

.verified-icon {
    width: 20px;
    height: 20px;
    color: #4CAF50;
}

.match-action-button {
    padding: 20px 25px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.btn-view-profile {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

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

/* Animal Profile Page Styles */
.animal-profile-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.profile-content {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-left,
.profile-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-image-section {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.profile-animal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-animal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.profile-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4CAF50;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail-row .detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-align: right;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f8f0;
    color: #4CAF50;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
}

.verified-badge .verified-icon {
    width: 18px;
    height: 18px;
}

.activity-action {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-message h2 {
    color: #333;
    margin-bottom: 15px;
}

.error-message p {
    color: #666;
    margin-bottom: 25px;
}

.match-success {
    margin-top: 15px;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4CAF50;
}

.match-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.confidence-score {
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
}

.animal-details-card {
    background: #f0f8f0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    line-height: 2;
}

.animal-details-card p {
    margin: 8px 0;
    color: #333;
}

.animal-id-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

.match-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.no-match-results {
    text-align: center;
    padding: 20px 0;
}

.no-match-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.no-match-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.guidance-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: left;
}

.guidance-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 18px;
}

.guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidance-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #856404;
    line-height: 1.6;
}

.guidance-list li:before {
    content: "→";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guidance-list li a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.guidance-list li a:hover {
    text-decoration: underline;
}

.photo-tips-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: left;
}

.photo-tips-box h3 {
    color: #1565c0;
    margin-bottom: 15px;
    font-size: 18px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tip-item {
    padding: 10px;
    background: white;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.tip-item strong {
    color: #1565c0;
}

.no-match-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.identify-guidelines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.identify-guidelines .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.identify-guidelines .tips-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.identify-guidelines .tips-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.identify-guidelines .tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.identify-guidelines .tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.identify-guidelines .tips-list li:last-child {
    border-bottom: none;
}

.identify-guidelines .tips-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.example-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.good-example {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.bad-example {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.example-placeholder {
    text-align: center;
    color: white;
}

.example-placeholder p {
    margin-top: 10px;
    font-weight: 600;
}

/* Ensure example images display properly */
.guideline-image img {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background: #f5f5f5;
}

.tips-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.tips-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.tips-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Animals List Page Styles */
.animals-list-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.action-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.search-container {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: #4CAF50;
}

.filter-container {
    min-width: 150px;
}

.filter-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-register {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.animal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15);
    border: 1px solid #e8f5e9;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.25);
    border-color: #4a7c2a;
}

.animal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
}

.animal-card-content {
    padding: 20px;
}

.animal-id {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.animal-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.animal-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-active {
    background-color: #4CAF50;
    color: white;
}

.status-pending {
    background-color: #ff9800;
    color: white;
}

.status-inactive {
    background-color: #9e9e9e;
    color: white;
}

.animal-card-actions {
    margin-top: 15px;
}

.btn-view-details {
    width: 100%;
    padding: 10px;
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view-details:hover {
    background: #4CAF50;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Help & Support Page Styles */
.help-support-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.help-content {
    max-width: 900px;
    margin: 0 auto;
}

.help-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.help-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.contact-info {
    color: #666;
    line-height: 2;
}

.contact-info strong {
    color: #333;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.guidelines-list li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .register-layout {
        grid-template-columns: 1fr;
    }

    .photo-upload-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .action-bar {
        flex-direction: column;
    }

    .search-container,
    .filter-container,
    .btn-register {
        width: 100%;
    }

    .animals-grid {
        grid-template-columns: 1fr;
    }

    .capture-actions {
        flex-direction: column;
    }

    .capture-actions .btn {
        width: 100%;
    }

    .identify-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .identify-guidelines .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .identify-guidelines .tips-box {
        padding: 20px;
    }

    .identify-guidelines .tips-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .identify-guidelines .tips-list li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 28px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .match-actions,
    .no-match-actions {
        flex-direction: column;
    }

    .match-actions .btn,
    .no-match-actions .btn {
        width: 100%;
    }

    .capture-controls {
        flex-direction: column;
    }

    .capture-controls .btn {
        width: 100%;
    }

    .camera-preview {
        max-width: 100%;
        aspect-ratio: 4/3;
        min-height: 300px;
    }
    
    #video, #canvas {
        width: 100%;
        height: 100%;
        max-height: 400px;
    }
    
    .register-form-container {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .search-input {
        width: 100%;
        padding-left: 40px;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .animal-card {
        width: 100%;
    }
    
    .capture-instructions {
        font-size: 14px;
        padding: 15px;
    }
    
    #searchAnimalId {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #searchByIdBtn {
        width: 100%;
    }
    
    .results-section {
        padding: 20px;
    }
    
    .match-result-container {
        padding: 15px;
    }
}

/* Homepage Content Sections */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.15);
    border: 1px solid #e8f5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.25);
    border-color: #4a7c2a;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.3);
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.content-icon svg {
    width: 30px;
    height: 30px;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-card p {
    color: #666;
    line-height: 1.8;
}

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.8;
}

.note-box {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
}

.note-box p {
    margin: 0;
    color: #1976d2;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-section .section-title {
    color: white;
}

.vision-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vision-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.vision-feature p {
    opacity: 0.9;
    line-height: 1.8;
}

.cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Auth Pages */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.auth-footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    line-height: 1.6;
}

.error-message code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

/* Dashboard */
.dashboard-page {
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.dashboard-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dashboard-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
}

.stat-display {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.animals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.animal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.animal-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.animal-info strong {
    color: #2c3e50;
}

.loading-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

.empty-message {
    text-align: center;
    padding: 40px;
    color: #666;
}

.empty-message a {
    color: #4CAF50;
    text-decoration: none;
}

/* Auth Buttons in Navbar */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-weight: 500;
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid,
    .benefits-grid,
    .vision-features {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .stat-display {
        flex-direction: column;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .dashboard-actions .btn {
        width: 100%;
    }
    
    #video, #canvas {
        width: 100%;
        height: 100%;
        max-height: 400px;
    }
    
    .register-form-container {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .search-input {
        width: 100%;
        padding-left: 40px;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .animal-card {
        width: 100%;
    }
    
    .capture-instructions {
        font-size: 14px;
        padding: 15px;
    }
    
    #searchAnimalId {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #searchByIdBtn {
        width: 100%;
    }
    
    .results-section {
        padding: 20px;
    }
    
    .match-result-container {
        padding: 15px;
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .photo-upload-grid {
        grid-template-columns: 1fr !important;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .register-form-container {
        padding: 15px;
    }
    
    .form-section {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .animal-card-content {
        padding: 15px;
    }
    
    .capture-controls {
        gap: 8px;
    }
    
    .capture-controls .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

