body {
    background: url('/publicSite/infoBackground.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.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: 3px 3px 9px;
    text-align: center;
    border-radius: 16px 16px 0 0;
}

.mosque-icon-wrapper {
    margin-bottom: 18px;
    position: relative;
}

.mosque-svg-icon {
    width: 50px;
    height: 50px;
    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 {
    
    background: #1e6b52;
    color: white;
    border: none;
    padding: 16px 64px;
    border-radius: 8px;
    font-size: 17px;
    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;
}


.dropdown-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #f7f8fa;
    box-sizing: border-box;

    flex: 1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

