:root {
    --main-color: hsl(203, 39%, 57%);
    --color-purple: #6c4b99;
}

.btn-primary {
    background-color: var(--main-color) !important
}

.btn-primary {
    background-color: #e94b86 !important;
    color: #fff !important;
    border-color: #e94b86 !important;
}

.btn-primary:hover {
    background: #56397b !important;
    border-color: #56397b !important;
    color: white !important;
}

.btn-purple {

    background: var(--color-purple) !important;
    border-color: var(--color-purple) !important;
    color: white !important;
}


.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}

.navbar-red {
    background-color: var(--main-color) !important;
}


.navbar-nav .nav-item a {
    color: #fff;
}

.sidebar-red-primary {
    background-color: var(--main-color) !important;
}

.sidebar-red-primary a {
    color: #fff !important;
}

.bg-warning {
    color: #fff !important;
}

.header-title {
    background-color: var(--main-color);
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    font-size: 1em;
    display: block;
    font-weight: bold;
}

.navbar-purple {
    background-color: #6c4b99;
}


.sidebar-gradient-purple {
    background-image: linear-gradient(to right, #4fa7dd, #6c4b99);
}

.nav-pills .nav-link {
    color: #ffffff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {

    background-color: #b03d8f !important;
    color: #fff;
    opacity: 0.8;
}

.nav-pills .nav-link:hover {

    background-color: #b03d8f !important;
    color: #fff !important;
    opacity: 0.6;
}


a.brand-link {
    color: #fff;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.content-area {
    flex: 1;
    /* padding: 30px; */
    overflow-y: auto;
    background: white;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    color: white;
    background: #007bff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
}

.info-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.info-panel h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-panel p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.reminder-list {
    list-style: none;
    padding: 0;
}

.reminder-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.reminder-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}


.new-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    transition: all 0.2s;
}

.new-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.4);
}

.add-reminder-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.add-reminder-btn:hover {
    background: #5568d3;
}

.header {
    background: #f4a460;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-breadcrumb {
    color: white;
    font-size: 14px;
}

.btn-close-modal {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-close-modal:hover {
    background: #5568d3;
}

.btn-stop-modal:hover {
    background: #c82333;
}

.btn-booked-modal:hover {
    background: #218838;
}

.btn-close-modal {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}