@font-face {
  font-family: 'HelveticaNeue';
  src: url('assets/helveticaneue.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'HelveticaNeue', sans-serif;
}

/* Hollister Brand Colors and Variables */
.hollister-red {
    background-color: #c41e3a;
}

.hollister-red-text {
    color: #c41e3a;
}

/* Logo Styling */
.hollister-logo {
    width: 40px;
    height: 40px;
    background-color: #c41e3a;
    position: relative;
    margin-right: 10px;
}

.hollister-logo::before,
.hollister-logo::after {
    content: '';
    position: absolute;
    background-color: #c41e3a;
}

.hollister-logo::before {
    width: 12px;
    height: 12px;
    top: 6px;
    left: 6px;
    transform: rotate(45deg);
}

.hollister-logo::after {
    width: 12px;
    height: 12px;
    top: 6px;
    right: 6px;
    transform: rotate(45deg);
}

.logo-pattern {
    background-image: 
        linear-gradient(45deg, #c41e3a 25%, transparent 25%), 
        linear-gradient(-45deg, #c41e3a 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #c41e3a 75%), 
        linear-gradient(-45deg, transparent 75%, #c41e3a 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

/* Header Styles */
header {
    position: relative;
}

/* Navigation Styles */
.nav-tab {
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-tab.active {
    background-color: #4a4a4a;
    color: white;
}

.nav-tab:not(.active) {
    background-color: #888888;
    color: white;
}

.nav-tab:hover:not(.active) {
    background-color: #757575;
}

.nav-tab:hover {
    text-decoration: none;
}

/* Status Indicators */
.status-enviado {
    color: #22c55e;
    font-weight: 600;
}

.status-pendiente {
    color: #6b7280;
    font-weight: 600;
}

/* Buttons */
.btn-editar {
    color: #6b7280;
    transition: all 0.2s ease;
    font-weight: 600;
}

.btn-editar:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    font-weight: 600;
}

.btn-editar-red {
    color: #c41e3a;
    transition: all 0.2s ease;
    font-weight: 600;
}

.btn-editar-red:hover {
    background-color: #c41e3a;
    color: white;
}

.btn-nuevo-caso {
    background-color: #c41e3a;
    color: white;
    transition: all 0.2s ease;
}

.btn-nuevo-caso:hover {
    background-color: #a01729;
}

/* Table Styles */
.table-header {
    background-color: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.table-row {
    transition: background-color 0.2s ease;
}

.table-row:nth-child(even) {
    background-color: #f9fafb;
}

.table-row:nth-child(odd) {
    background-color: white;
}

.table-row:hover {
    background-color: #f0f0f0 !important;
}

/* Page Title Styles */
.page-title {
    font-size: 2rem;
    font-weight: 300;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 4rem;
    height: 0.25rem;
    background-color: #c41e3a;
    margin: 0 auto;
}

/* Footer Styles */
.footer-link {
    color: #6b7280;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #374151;
}

/* Utility Classes */
.text-hollister {
    color: #c41e3a;
}

.bg-hollister {
    background-color: #c41e3a;
}

.border-hollister {
    border-color: #c41e3a;
}

/* Custom Shadows */
.shadow-hollister {
    box-shadow: 0 4px 6px -1px rgba(196, 30, 58, 0.1), 0 2px 4px -1px rgba(196, 30, 58, 0.06);
}

/* Icon Styles */
.btn-editar img,
.btn-editar-red img,
.status-enviado img,
.status-pendiente img {
    filter: brightness(0.8);
}

.btn-editar:hover img {
    filter: brightness(1);
}

.btn-editar-red:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .logo-pattern {
        width: 2rem;
        height: 2rem;
    }
    
    header .absolute {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .nav-tab span {
        display: none;
    }
    
    .nav-tab {
        padding: 0.75rem 0.5rem;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
}

/* Custom Select Styles */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23968B87' 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 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #374151;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    border-color: #c41e3a !important;
}

.custom-select:hover {
    box-shadow: 0 0 0 3px rgba(150, 139, 135, 0.1);
}

.custom-select:focus {
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    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='%23c41e3a' 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");
}

.custom-select option {
    background-color: white;
    color: #374151;
    padding: 8px 12px;
    font-weight: 500;
}

.custom-select option:hover,
.custom-select option:checked {
    background-color: #f3f4f6;
    color: #c41e3a;
}

/* Custom Select Disabled State */
.custom-select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
    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='%239ca3af' 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");
}

/* Custom Select for smaller widths (like the date selects) */
.custom-select.w-40 {
    min-width: 160px;
}

/* Enhanced focus state for better accessibility */
.custom-select:focus-visible {
    outline: 0;
}

/* Input Placeholder Color */
input::placeholder {
    color: #D91539 !important;
}

input::-webkit-input-placeholder {
    color: #D91539 !important;
    font-weight: 600;
}

input::-moz-placeholder {
    color: #D91539 !important;
    opacity: 1;
    font-weight: 600;
}

input:-ms-input-placeholder {
    color: #D91539 !important;
    font-weight: 600;
}

input:-moz-placeholder {
    color: #D91539 !important;
    opacity: 1;
    font-weight: 600;
} 