body {
    font-family: Arial, sans-serif;
    background-color: #FBF9CC;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #8B0000;
    --second-color: #FBF9CC;
}

.header {
    background-color: var(--main-color);
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header .jathaImg {
    height: 50px;
    width: 50px;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 28px;
    font-weight: bold;
}

.jathaLogin {
    background-color: var(--main-color);
    padding: 0.5rem 4rem;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.logout-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 7px;
    padding: 6px 20px;
    /* font-weight: bold; */
    transition: all 0.3s;
}

/* .logout-btn:hover {
    color: white;
    border: 2px solid rgb(241, 45, 45)50;
} */

.dashboard-content {
    padding: 20px 0;
}

.dashboard-content .location-text {
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

.listbtn i {
    font-size: 20px;
    color: var(--main-color);
    padding: 10px;
    border: 1px solid var(--main-color);
    /* border-radius: 50%; */
    height: 40px;
    width: 40px;
}

.dashboard-content .action-card {
    background-color: var(--main-color);
    color: white;
    padding: 28px;
    border-radius: 8px;
    cursor: pointer;
    height: 100%;
    min-height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dashboard-content .action-card:hover {
    background-color: #a00000;
}

.dashboard-content .icon-white {
    font-size: 27px;
    color: white;
}

.dashboard-content .action-card span {
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 992px) {
    h1 {
        font-size: 22px;
    }

    .action-card {
        padding: 24px;
    }
    .location-text{
        font-size:16px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 18px;
    }

    .logo-box {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .action-card {
        padding: 12px;
    }

    .icon-white {
        font-size: 20px;
    }

    .action-card span {
        font-size: 12px;
    }
}

/* Form Fields */
.form-container {
    background-color: var(--second-color);
    padding: 20px;
}

.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 15px;
}

.form-label {
    font-size: 0.9rem;
    color: #6c757d;
}

h2 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.satsang-place {
    text-align: right;
    color: #5a5a5a;
    font-weight: 500;
}

.date-input {
    position: relative;
}

.date-input .bi {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

@media (max-width: 768px) {
    .satsang-place {
        text-align: left;
        margin-top: 10px;
    }
}

