.taller_container * {
    box-sizing: border-box;
    font-family: var(--monserrat);
}

.taller_container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.taller_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.taller_header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.862);
}

.taller_add_btn {
    text-decoration: none;
    padding: 15px 20px;
    background-color: var(--red-border-strong);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.taller_add_btn:hover {
    background-color: var(--red-border-default);
}

.taller_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.taller_search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.taller_search-box input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.taller_search-box input:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.taller_search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.taller_status-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.taller_status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.taller_status.available {
    background-color: #c6f3d1;
    color: #155724;
}

.taller_status.unavailable {
    background-color: #eba4a4;
    color: #155724;
}

.taller_filter-dates,
.taller_filter-btn {
    padding: 10px 18px;
    background-color: #f0f3f8;
    border: none;
    border-radius: 8px;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.taller_filter-btn:hover {
    background-color: #e2e7f0;
}

.taller_filter-btn.active {
    background-color: var(--red-border-default);
    color: white;
}

#taller_clear {
    background-color: var(--red-border-strong);
    color: white;
}

#taller_clear:hover {
    background-color: var(--red-border-default);
}

/* Tabla */

.taller_orders-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.taller_table {
    width: 100%;
    border-collapse: collapse;
}

.taller_table thead {
    background-color: #f8fafc;
    border-bottom: 2px solid #eee;
}

.taller_table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    color: #555;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.taller_table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.taller_table tr:hover {
    background-color: #f9fbfd;
}

/* Estados */

.taller_status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.taller_actions a {
    text-decoration: none;
    padding: 8px 15px;
    margin-right: 8px;
    border: none;
    border-radius: 6px;
    background-color: #f0f3f8;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.taller_actions a:nth-child(2) {
    background-color: #7571ff;
    color: #ffffff;
}

.taller_actions a:last-child {
    background-color: #f8d7da;
    color: #721c24;
}

.taller_actions a:hover {
    background-color: #e2e7f0;
}

/* Paginación */

.taller_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-top: 1px solid #eee;
}

.taller_pagination-controls {
    display: flex;
    gap: 10px;
}

.taller_pagination-controls button {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.taller_pagination-controls button:hover:not(:disabled) {
    background-color: #f0f3f8;
}

.taller_pagination-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Stats */

.taller_stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.taller_stat-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
