/* Gazette List Styles */
.gazette-search-form {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.gazette-table th {
    background-color: #f8f9fa;
    border-bottom-width: 2px;
}

.gazette-table td {
    vertical-align: middle;
}

.gazette-table .trademark-cell {
    min-width: 200px;
}

.gazette-table .status-cell {
    width: 120px;
}

.gazette-table .date-cell {
    width: 140px;
}

.gazette-table .actions-cell {
    width: 100px;
    text-align: right;
}

/* Gazette Detail Styles */
.trademark-info {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.trademark-logo {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.applicant-info {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.publication-info {
    background-color: #e9ecef;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.deadline-alert {
    font-weight: bold;
    color: #dc3545;
}

/* Notice Styles */
.notice-card {
    transition: transform 0.2s;
}

.notice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.notice-type-badge {
    font-size: 0.875rem;
    padding: 0.5em 1em;
}

.notice-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Status Badge Colors */
.status-badge {
    padding: 0.5em 1em;
    font-weight: 500;
}

.status-published {
    background-color: #28a745;
    color: #fff;
}

.status-opposed {
    background-color: #dc3545;
    color: #fff;
}

.status-registered {
    background-color: #007bff;
    color: #fff;
}

.status-withdrawn {
    background-color: #6c757d;
    color: #fff;
}

.status-expired {
    background-color: #343a40;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gazette-table {
        font-size: 0.875rem;
    }

    .gazette-table .trademark-cell {
        min-width: 150px;
    }

    .gazette-table .date-cell {
        width: 120px;
    }

    .trademark-logo {
        max-width: 150px;
        max-height: 150px;
    }
}

/* Print Styles */
@media print {
    .gazette-search-form,
    .pagination,
    .btn {
        display: none !important;
    }

    .card {
        border: none !important;
        box-shadow: none !important;
    }

    .card-header {
        background-color: transparent !important;
        border-bottom: 2px solid #000 !important;
    }

    .trademark-info,
    .applicant-info,
    .publication-info {
        background-color: transparent !important;
        border: 1px solid #000 !important;
        page-break-inside: avoid;
    }
} 