
.mosqueContainer {
    margin-top: 30px;
}

.mosque-page-container {
    background-color: #e8e9eb;
    min-height: 100vh;
    padding: 50px 20px;
}

.mosque-main-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.mosque-page-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1e6b52;
    margin-bottom: 40px;
    margin-top: 0;
}

.mosque-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
  
}

.mosque-header-section {
    background: #1e6b52;
    color: white;
    padding: 20px 30px 20px 30px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    background-image: url('../publicSite/images/icons/mosque-white.svg');
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: 30px bottom;
}
@media (max-width: 480px) {
    .mosque-header-section {
        background-size: 30px 30px;
        padding-bottom: 26px;
    }
}

.mosque-icon-wrapper {
    margin-bottom: 18px;
}

.mosque-svg-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.mosque-header-description {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: white;
    margin: 0;
}

.mosque-form-content {
    padding: 35px 30px 30px;
}

.mosque-field-group {
    margin-bottom: 28px;
}

.mosque-field-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.mosque-required-asterisk {
    color: #e74c3c;
    margin-left: 2px;
}

.mosque-text-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #f7f8fa;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .mosque-text-input:focus {
        outline: none;
        border-color: #1e6b52;
        background: white;
        box-shadow: 0 0 0 3px rgba(30, 107, 82, 0.1);
    }

.mosque-input-helper {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.4;
}

.mosque-radio-container {
    margin-top: 12px;
}

.mosque-radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    cursor: pointer;
}

.mosque-radio-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .mosque-radio-visual.selected {
        border-color: #1e6b52;
        background: #1e6b52;
    }

        .mosque-radio-visual.selected::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.mosque-radio-text {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
}

.mosque-submit-button {
    width: 100%;
    background: #1e6b52;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

    .mosque-submit-button:hover {
        background: #1a5e48;
    }

.mosque-bottom-section {
    text-align: center;
    margin-top: 25px;
}

.mosque-bottom-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.mosque-add-new-button {
    background: white;
    color: #1e6b52;
    border: 2px solid #1e6b52;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .mosque-add-new-button:hover {
        background: #1e6b52;
        color: white;
        text-decoration: none;
    }

.mosque-plus-symbol {
    margin-right: 8px;
    font-weight: bold;
    font-size: 16px;
}

.text-danger {
    color: #e74c3c !important;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}


input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
