/* CSS Custom Properties for Theming */
:root {
    --color-primary: #4dc0fc;
    --color-primary-light: #6dcfff;
    --color-secondary: #fc7340;
    --color-background: #ffffff;
    --color-background-alt: #f5f5f5;
    --color-text: #000000;
    --color-text-light: #333333;
    --color-border: #dddddd;
    --color-header-gradient-start: #4dc0fc;
    --color-header-gradient-end: #fc7340;
    --color-hero-overlay: rgba(77, 192, 252, 0.7);
    --color-card-bg: #ffffff;
    --color-input-bg: #ffffff;
    --color-input-border: #4dc0fc;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--color-header-gradient-start) 0%, var(--color-header-gradient-end) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    flex: 1;
    min-width: 300px;
}

a.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
}

a.header-brand:hover {
    opacity: 0.9;
}

.header-logo {
    width: 91px;
    height: 91px;
    object-fit: cover;
}

.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 15px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Language & Theme Switcher Dropdowns */
.lang-switcher,
.theme-switcher {
    position: relative;
}

.dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    min-width: 40px;
}

.dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.dropdown-toggle span {
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    display: none;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: rgba(45, 45, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: auto;
    z-index: 1000;
    display: none;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.dropdown-menu.show {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item.active {
    background-color: rgba(139, 69, 19, 0.6);
    font-weight: 500;
}

.dropdown-item[title]:hover::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    white-space: nowrap;
    z-index: 1001;
    pointer-events: none;
}

.flag-icon {
    font-size: 1.1em;
}

.theme-icon {
    font-size: 1.1em;
}

/* RTL Support for Hebrew */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] .features {
    direction: rtl;
}

[dir="rtl"] .dog-card,
[dir="rtl"] .litter-card,
[dir="rtl"] .achievement-card {
    text-align: right;
}

[dir="rtl"] .profile-layout {
    grid-template-columns: 350px 1fr;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
    padding-right: 25px;
    padding-left: 0;
}

[dir="rtl"] .achievement-card {
    border-left: none;
    border-right: 4px solid #8B4513;
}

[dir="rtl"] .note {
    border-left: none;
    border-right: 4px solid #8B4513;
}

/* RTL Gallery fix */
[dir="rtl"] .tiled-gallery,
[dir="rtl"] .photo-gallery {
    direction: ltr;
}

[dir="rtl"] .photo-gallery h3 {
    direction: rtl;
    text-align: right;
}

/* Hero Section */
.hero {
    background: linear-gradient(var(--color-hero-overlay), var(--color-hero-overlay)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23D2691E" width="1200" height="400"/></svg>');
    color: white;
    padding: 80px 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Image Section */
.hero-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Page Header */
.page-header {
    background-color: #8B4513;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.page-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

/* Featured Section */
.featured {
    padding: 60px 20px;
    background-color: var(--color-background-alt);
    transition: background-color 0.3s ease;
}

.featured h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.featured > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

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

.feature {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Dogs Section */
.dogs {
    padding: 60px 20px;
    background-color: white;
}

.dogs .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.dog-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dog-image-placeholder {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.dog-card h3 {
    color: #8B4513;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.dog-title {
    color: #A0522D;
    font-weight: bold;
    margin-bottom: 15px;
}

.dog-details {
    list-style: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}

.dog-details li {
    padding: 5px 0;
}

/* Litters Section */
.litters {
    padding: 60px 20px;
    background-color: white;
}

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

.litter-card h3 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.litter-card ul {
    margin: 15px 0 15px 25px;
}

.litter-card li {
    margin: 8px 0;
}

.availability {
    background-color: #8B4513;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

.info-box {
    background-color: #FFF8DC;
    border: 2px solid #8B4513;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.info-box h3 {
    color: #8B4513;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.info-box ol {
    margin: 15px 0 15px 25px;
}

.info-box li {
    margin: 8px 0;
}

/* About Section */
.about-content {
    padding: 60px 20px;
    background-color: white;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h3 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 15px 0 15px 25px;
}

.about-section li {
    margin: 10px 0;
}

.note {
    background-color: #FFF8DC;
    padding: 15px;
    border-left: 4px solid #8B4513;
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Dog Profile Pages */
.dog-profile {
    padding: 60px 20px;
    background-color: white;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 40px;
}

.photo-gallery {
    margin-bottom: 30px;
}

.main-photo {
    margin-bottom: 15px;
}

/* Tiled Gallery - Jetpack-style flexbox layout */
.tiled-gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.tiled-gallery__row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.tiled-gallery__row + .tiled-gallery__row {
    margin-top: 4px;
}

.tiled-gallery__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tiled-gallery__col + .tiled-gallery__col {
    margin-left: 4px;
}

.tiled-gallery__item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    flex-grow: 1;
}

.tiled-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tiled-gallery__item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.thumbnail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.thumbnail-grid > div {
    flex: 0 0 auto;
    max-width: 300px;
}

.thumbnail-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.thumbnail {
    font-size: 0.9em;
}

.profile-info {
    margin-top: 20px;
}

.profile-info h3 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.profile-info p {
    margin-bottom: 15px;
}

.profile-sidebar .info-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-sidebar h3 {
    color: #8B4513;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.stats-list li:last-child {
    border-bottom: none;
}

.achievements-section {
    margin: 40px 0;
}

.achievements-section h3 {
    color: #8B4513;
    font-size: 2em;
    margin-bottom: 25px;
}

.achievement-card {
    background-color: #f9f9f9;
    border-left: 4px solid #8B4513;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.achievement-card h4 {
    color: #8B4513;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.achievement-card p {
    margin: 5px 0;
}

.achievement-card ul {
    margin: 10px 0 0 25px;
}

.achievement-card li {
    margin: 5px 0;
}

.pedigree-section,
.offspring-section {
    margin: 40px 0;
}

.pedigree-section h3,
.offspring-section h3 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.pedigree-box {
    background-color: #FFF8DC;
    border: 2px solid #8B4513;
    padding: 20px;
    border-radius: 8px;
}

.pedigree-box p {
    margin: 10px 0;
}

.pedigree-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

.offspring-section ul {
    margin: 15px 0 0 25px;
}

.offspring-section li {
    margin: 8px 0;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #A0522D;
}

.dog-card a {
    text-decoration: none;
    color: inherit;
}

.dog-card h3 a {
    color: #8B4513;
    transition: color 0.3s;
}

.dog-card h3 a:hover {
    color: #A0522D;
}

.dog-card .dog-details a {
    color: #8B4513;
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 60px 20px;
    background-color: white;
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.form-intro h3 {
    color: #8B4513;
    font-size: 2em;
    margin-bottom: 15px;
}

.puppy-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #8B4513;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #A0522D;
}

.form-message {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Admin Dashboard Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    background-color: #8B4513;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.admin-header h1 {
    margin-bottom: 10px;
}

.inquiries-table {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.inquiries-table table {
    width: 100%;
    border-collapse: collapse;
}

.inquiries-table th {
    background-color: #8B4513;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.inquiries-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.inquiries-table tr:hover {
    background-color: #f9f9f9;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-contacted {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-declined {
    background-color: #f8d7da;
    color: #721c24;
}

.action-btn {
    padding: 5px 12px;
    margin: 0 3px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
}

.view-btn {
    background-color: #17a2b8;
    color: white;
}

.view-btn:hover {
    background-color: #138496;
}

/* Responsive */
/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, var(--color-header-gradient-start) 0%, var(--color-header-gradient-end) 100%);
    z-index: 1000;
    padding: 60px 15px 15px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu nav ul li {
    margin-bottom: 5px;
}

.mobile-menu nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
    font-size: 1em;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 15px 0;
}

.mobile-menu-switchers {
    display: flex;
    gap: 10px;
    padding: 5px 10px;
}

.mobile-menu-switchers .lang-switcher,
.mobile-menu-switchers .theme-switcher {
    flex: 1;
}

.mobile-menu-switchers .dropdown-toggle {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-left {
        width: auto;
    }

    .header-left nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }

    .tagline {
        font-size: 0.9em;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    .header-brand {
        gap: 10px;
    }

    .hero h2 {
        font-size: 1.8em;
    }

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

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .thumbnail-grid > div {
        max-width: 45%;
    }

    .puppy-form {
        padding: 20px;
    }

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

    .inquiries-table {
        overflow-x: auto;
    }
}

/* Theme-specific Styles */

/* Apply theme colors to key elements */
.feature {
    background-color: var(--color-card-bg);
    transition: background-color 0.3s ease;
}

.feature h3,
.profile-info h3,
.form-section h3,
.about-section h3,
.achievements-section h3,
.pedigree-section h3,
.offspring-section h3,
.form-intro h3 {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.btn {
    background-color: var(--color-primary);
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--color-primary-light);
}

.btn-primary {
    background-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
}

.dog-card,
.litter-card,
.achievement-card,
.info-box,
.info-card,
.puppy-form {
    background-color: var(--color-card-bg);
    transition: background-color 0.3s ease;
}

.page-header {
    background-color: var(--color-primary);
    transition: background-color 0.3s ease;
}

.dog-card h3 a,
.dog-card .dog-details a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.dog-card h3 a:hover {
    color: var(--color-primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-input-bg);
    border-color: var(--color-input-border);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

.form-group label {
    color: var(--color-text);
}

.achievement-card {
    border-left-color: var(--color-primary);
}

.pedigree-box {
    border-color: var(--color-primary);
}

.admin-header,
.inquiries-table th {
    background-color: var(--color-primary);
}

.inquiries-table {
    background-color: var(--color-background-alt);
}

.inquiries-table td {
    border-bottom-color: var(--color-border);
    color: var(--color-text);
}

.inquiries-table tr:hover {
    background-color: var(--color-card-bg);
}

/* Dark theme specific adjustments */
.theme-dark .dog-image-placeholder {
    background: linear-gradient(135deg, #D2691E 0%, #F4A460 100%);
}

.theme-dark .pedigree-box {
    background-color: #3d3d3d;
}

.theme-dark .info-box {
    background-color: #3d3d3d;
}

.theme-dark .note {
    background-color: #3d3d3d;
    border-left-color: var(--color-primary);
}

.theme-dark [dir="rtl"] .note {
    border-right-color: var(--color-primary);
}

.theme-dark footer {
    background-color: #0d0d0d;
}

/* Smooth transitions for all themed elements */
header,
.hero,
.featured,
.page-header,
.dog-card,
.litter-card,
.achievement-card,
.feature,
.btn,
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}
