/* Main Container */
.pet-adoption-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filter Controls */
.pet-filters {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    align-items: end;
    position: relative;
    overflow: hidden;
}

.pet-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb100, #ff8c00, #ffb100);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    flex: 1;
}

.filter-label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: #ffb100;
    border-radius: 2px;
}

.pet-filter,
.pet-sort {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.pet-filter:focus,
.pet-sort:focus {
    outline: none;
    border-color: #ffb100;
    box-shadow: 0 0 0 3px rgba(255, 177, 0, 0.15);
    transform: translateY(-1px);
}

.pet-filter:hover,
.pet-sort:hover {
    border-color: #ffb100;
    background-color: #fffbf5;
    transform: translateY(-1px);
}

.pet-filter:active,
.pet-sort:active {
    transform: translateY(0);
}

/* Loading state for filters */
.pet-filters.loading {
    opacity: 0.7;
    pointer-events: none;
}

.pet-filters.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffb100;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Filter results info */
.filter-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
    font-size: 14px;
    color: #6c757d;
}

.results-count {
    font-weight: 600;
    color: #495057;
}

.clear-filters {
    background: none;
    border: none;
    color: #ffb100;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
    padding: 0;
    transition: color 0.3s ease;
}

.clear-filters:hover {
    color: #ff8c00;
}

/* Filter group icons */
.filter-group[data-filter="species"] .filter-label::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.filter-group[data-sort="order"] .filter-label::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

/* Enhanced select styling */
.pet-filter option,
.pet-sort option {
    padding: 8px 12px;
    color: #495057;
    background: #ffffff;
}

.pet-filter option:checked,
.pet-sort option:checked {
    background: #ffb100;
    color: #ffffff;
}

/* Smooth transitions for all filter interactions */
.pet-filters * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus improvements for accessibility */
.pet-filter:focus-visible,
.pet-sort:focus-visible {
    border-color: #ffb100;
    box-shadow: 0 0 0 3px rgba(255, 177, 0, 0.15);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Filter animation when options change */
.pet-filter.changing,
.pet-sort.changing {
    transform: scale(0.98);
}

.pet-filter.changing + .filter-results,
.pet-sort.changing + .filter-results {
    opacity: 0.5;
}

/* Responsive filters */
@media (max-width: 992px) {
    .pet-filters {
        gap: 20px;
        padding: 20px 25px;
    }
    
    .filter-group {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .pet-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }
    
    .filter-group {
        min-width: 100%;
        max-width: 100%;
    }
    
    .pet-filter,
    .pet-sort {
        font-size: 16px; /* Better for mobile touch */
        padding: 14px 16px;
        padding-right: 45px;
        min-height: 48px; /* Minimum touch target size */
        background-size: 20px;
        background-position: right 16px center;
    }
}

@media (max-width: 480px) {
    .pet-filters {
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .filter-label {
        font-size: 12px;
    }
}

/* Section Title */
.section-title {
    margin: 0 0 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffb100;
    color: #252422;
    font-size: 1.5em;
    font-weight: 600;
}

/* Grid Layout */
.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Pet Card */
.pet-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pet-card:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Image */
.pet-image {
    position: relative;
    padding-top: 60%;
    background: #f5f5f5;
}

.pet-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.pet-info {
    padding: 20px;
}

.pet-name {
    margin: 0 0 15px;
    font-size: 1.4em;
    color: #252422;
}

/* Meta Information */
.pet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.pet-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    color: #252422;
}

.pet-meta i {
    color: #ffb100;
}

/* Excerpt */
.pet-excerpt {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #252422;
}

/* Button */
.pet-more-info {
    display: inline-block;
    padding: 8px 20px;
    background: #0dc985;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pet-more-info:hover {
    background: #0bb576;
    color: #fff;
}

/* Single Pet View */
.pet-single-container {
    width: 100%;
    margin: 0 auto;
}

.pet-single {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 40px 0;
}

.pet-single-header {
    position: relative;
    background: #252422;
    color: #fff;
    padding: 30px;
}

.pet-single-image {
    margin-bottom: 20px;
}

.pet-single-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pet-single-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pet-single-title h1 {
    margin: 0;
    color: #fff;
}

.pet-single-content {
    padding: 30px;
}

.pet-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pet-info-section {
    margin-bottom: 30px;
}

.pet-info-section h2 {
    color: #252422;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.pet-info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pet-info-item .label {
    font-weight: bold;
    color: #252422;
    min-width: 120px;
}

.pet-info-item .value {
    color: #252422;
}

.pet-species {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ffb100;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.pet-species i {
    color: #fff;
}

/* Pet Widget */
.pet-widget {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pet-widget-title {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffb100;
    color: #252422;
    font-size: 1.3em;
}

.pet-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.pet-widget-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.pet-widget-card:hover {
    transform: translateY(-3px);
}

.pet-widget-image {
    position: relative;
    padding-top: 75%;
}

.pet-widget-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-widget-info {
    padding: 12px;
}

.pet-widget-name {
    margin: 0 0 8px;
    font-size: 1.1em;
}

.pet-widget-name a {
    color: #252422;
    text-decoration: none;
}

.pet-widget-name a:hover {
    color: #ffb100;
}

.pet-widget-meta {
    display: flex;
    gap: 10px;
    font-size: 0.9em;
    color: #666;
}

.pet-widget-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pet-widget-meta i {
    color: #ffb100;
}

/* Contact Form Styles */
.pet-contact-section {
    background: linear-gradient(135deg, #fff6e5 0%, #fff 100%);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.pet-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffb100, transparent);
}

.pet-contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 177, 0, 0.1);
    position: relative;
}

.pet-contact-form h3 {
    margin: 0 0 15px;
    color: #252422;
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.pet-contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffb100;
    border-radius: 2px;
}

.pet-contact-form p {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #252422;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.form-group label:after {
    content: ' *';
    color: #ffb100;
}

.form-group label[for="contact-phone"]:after {
    display: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #ffb100;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffb100;
    box-shadow: 0 0 0 4px rgba(255, 177, 0, 0.1);
    outline: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff4444;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.95em;
}

.submit-button {
    position: relative;
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ffb100 0%, #ff9d00 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 177, 0, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button .button-loader {
    margin-left: 10px;
}

/* Form Success/Error Messages */
.form-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    position: relative;
    animation: slideIn 0.4s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 2px solid rgba(244, 67, 54, 0.2);
}

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

/* Input icons */
.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffb100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group input:valid + i,
.form-group textarea:valid + i {
    opacity: 1;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
}

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

.status-in-progress {
    background: #cce5ff;
    color: #004085;
}

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

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

/* Adoption Status Label */
.adoption-status-label {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}

.adoption-status-label.adopted {
    background: rgba(255, 177, 0, 0.15);
    color: #c17d00;
}

.adoption-status-label.not-adopted {
    background: rgba(13, 201, 133, 0.15);
    color: #0a7d52;
}

/* Adopted pet styling */
.pet-card.adopted {
    position: relative;
}

.pet-card.adopted .pet-image {
    filter: grayscale(1);
}

.pet-card.adopted::after {
    content: "Udomljen";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    background: rgba(255, 177, 0, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

/* Single pet adopted styling */
.pet-single-image.adopted {
    position: relative;
}

.pet-single-image.adopted img {
    filter: grayscale(1);
}

.pet-single-image.adopted::after {
    content: "Udomljen";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 177, 0, 0.9);
    color: white;
    padding: 15px 30px;
    font-size: 2em;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    pointer-events: none;
}

/* PET REPORT FORM STYLES */

/* Container and Main Layout */
.pet-report-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Section */
.pet-report-form-container .report-form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.pet-report-form-container .report-form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 1px;
}

.pet-report-form-container .report-form-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pet-report-form-container .report-form-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Structure */
.pet-report-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Form Sections */
.pet-report-form .form-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 0;
    transition: all 0.3s ease;
}

.pet-report-form .form-section:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pet-report-form .form-section legend {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    padding: 0 15px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Form Rows and Groups */
.pet-report-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.pet-report-form .form-row:last-child {
    margin-bottom: 0;
}

.pet-report-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pet-report-form .form-group.full-width {
    flex: 1 1 100%;
}

.pet-report-form .form-group.half-width {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

/* Labels */
.pet-report-form label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pet-report-form label.required::after {
    content: '*';
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

/* Form Controls */
.pet-report-form input[type="text"],
.pet-report-form input[type="email"],
.pet-report-form input[type="tel"],
.pet-report-form select,
.pet-report-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1f2937;
}

.pet-report-form input[type="text"]:focus,
.pet-report-form input[type="email"]:focus,
.pet-report-form input[type="tel"]:focus,
.pet-report-form select:focus,
.pet-report-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: #fffbfa;
}

.pet-report-form input[type="text"]:hover,
.pet-report-form input[type="email"]:hover,
.pet-report-form input[type="tel"]:hover,
.pet-report-form select:hover,
.pet-report-form textarea:hover {
    border-color: #d1d5db;
}

.pet-report-form textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.pet-report-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 45px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* File Input */
.pet-report-form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pet-report-form input[type="file"]:hover {
    border-color: #ff6b35;
    background: #fffbfa;
}

.pet-report-form input[type="file"]:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Field Description */
.pet-report-form .field-description {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    line-height: 1.4;
}

/* Form Actions */
.pet-report-form .form-actions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* Submit Button */
.pet-report-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.pet-report-form .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pet-report-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.pet-report-form .submit-button:hover::before {
    left: 100%;
}

.pet-report-form .submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.pet-report-form .submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Button Loading State */
.pet-report-form .button-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pet-report-form .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Privacy Notice */
.pet-report-form .privacy-notice {
    margin-top: 25px;
    padding: 20px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0c4a6e;
    line-height: 1.5;
}

/* Messages */
#report-form-messages {
    margin-top: 25px;
}

#report-form-messages .message {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

#report-form-messages .success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

#report-form-messages .error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pet-report-form-container {
        margin: 20px;
        padding: 20px;
        border-radius: 12px;
    }
    
    .pet-report-form-container .report-form-header h2 {
        font-size: 1.8rem;
    }
    
    .pet-report-form-container .report-form-description {
        font-size: 1rem;
    }
    
    .pet-report-form .form-section {
        padding: 20px;
    }
    
    .pet-report-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pet-report-form .form-group.half-width {
        flex: 1 1 100%;
        min-width: auto;
    }
    
    .pet-report-form .submit-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pet-report-form-container {
        margin: 10px;
        padding: 15px;
    }
    
    .pet-report-form-container .report-form-header h2 {
        font-size: 1.5rem;
    }
    
    .pet-report-form .form-section {
        padding: 15px;
    }
    
    .pet-report-form input[type="text"],
    .pet-report-form input[type="email"],
    .pet-report-form input[type="tel"],
    .pet-report-form select,
    .pet-report-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .pet-report-form input[type="text"],
    .pet-report-form input[type="email"],
    .pet-report-form input[type="tel"],
    .pet-report-form select,
    .pet-report-form textarea {
        border-color: #000000;
    }
    
    .pet-report-form .submit-button {
        background: #000000;
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .pet-report-form .form-section,
    .pet-report-form input[type="text"],
    .pet-report-form input[type="email"],
    .pet-report-form input[type="tel"],
    .pet-report-form select,
    .pet-report-form textarea,
    .pet-report-form .submit-button {
        transition: none;
    }
    
    .pet-report-form .submit-button::before,
    .pet-report-form .spinner {
        animation: none;
    }
}

/* Print styles */
@media print {
    .pet-report-form-container {
        box-shadow: none;
        border: 1px solid #000000;
    }
    
    .pet-report-form .submit-button {
        display: none;
    }
}
