﻿.footer {
    left: 0 !important;
    margin-top: 20px;
}

.layout-wrapper {
    background: #f9f9f9 !important;
}

.container {
    background: #fefeff !important;
}
/* ===== HEADER SUPERIOR ===== */
.header-bar {
    background: #454343;
    padding: 16px 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    height: 48px;
}

.header-brand {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.header-right {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-workshop{
    color: #e60000;       
    font-weight: 700;
    padding-left: 15px;    
    border-left: 4px solid #e60000; 
    font-size: 32px;
}

 .form-card {
     background: white;
     max-width: 980px;
     margin: 30px auto;
     border-radius: 8px;
     padding: 32px 40px;
     box-shadow: 0 4px 14px rgba(0,0,0,0.06);
     border: 1px solid #eee;
 }

.form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: #c40000;
    background: #fff;
}

.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 30px;
    gap: 20px;
}

.step {
    text-align: center;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.step.active {
    color: #c40000;
    font-weight: 700;
}

.bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 18px;
    color: #666;
}

.step.active .bubble {
    background: #c40000;
    color: #fff;
}

.divider {
    width: 70px;
    height: 2px;
    background: #ddd;
}

.page-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px auto;
    max-width: 980px;
    font-size: 28px;
    font-weight: 700;
}

.id-segment {
    display: flex;
    gap: 10px;
    margin: 5px 0 20px;
    width: 100%;
}

.id-segment .seg {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    background: #fafafa;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.id-segment .seg.active,
.id-segment .seg:hover {
    background: #c40000;
    color: #fff;
    border-color: #c40000;
}

.right-align {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.btn-guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background-color: #fdecec;   /* rosado claro */
    color: #e53935;              /* rojo */
    border: none;

    padding: 6px 12px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 500;
    cursor: pointer;

    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-guide i {
    font-size: 14px;
}

.btn-guide:hover {
    background-color: #fbd5d5;
}

.btn-guide:active {
    transform: scale(0.97);
}

.guide-content {
    text-align: center;
}

.guide-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
}

.guide-footer {
    margin-top: 15px;
    text-align: center;
}


.actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

.pink-card {
    background: #ffe6e6;
    border-radius: 8px;
    padding: 25px 30px;
    border: 1px solid #f3caca;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.pink-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 25px 30px;
    border: 1px solid #e2e2e2;
    margin-top: 30px;
}

.notes-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.btn-gray {
    background: white;
    color: #333;
    padding: 12px 26px;
    border-radius: 6px;
    border: 1px solid #bbb;
    cursor: pointer;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.schedule-grid .k-listview-content {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 12px;
}


.day-column {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.day-header {
    background: #f2f2f2;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 14px;
}

.day-header.selected-day {
    background: #ff0000;
    color: #fff;
}

.time-slot {
    margin: 6px;
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;

    border: 1px solid #ccc;
    background: #fff;

    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Slot disponible */
.time-slot.slot-available {
    background: #ffffff;
}

/* Hover = Selected */
.time-slot.slot-available:hover,
.time-slot.slot-available.selected {
    background: #ff0000;
    color: #fff;
    font-weight: bold;
}
/* Slot deshabilitado */
.time-slot.slot-disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.time-slot.slot-disabled:hover {
    background: #f5f5f5;
    color: #999;
}

.holiday-card {
    opacity: 0.7;
    border-left: 4px solid #E67300;
}

.holiday-header {
    background: #E67300 !important;
    color: white !important;
}

.holiday-label {
    color: #E67300;
    font-weight: 600;
    padding: 12px 8px;
    font-size: 13px;
    text-align: center;
}

