﻿body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 1rem;
}

.card {
    background: #ffffff;
    border-radius: 6px;
    padding: 2rem;
    max-width: 700px;
    margin: 0; /* CHANGED from auto */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0.5rem;
    padding: 1rem;
    align-items: start;
    justify-content: start;
}

.header {
    background-color: #ffffff;
    padding: 1rem;
    border-bottom: 2px solid #00703c;
}

h2 {
    color: #00573f;
    margin-bottom: 1rem;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.logo {
    height: 60px;
}

.main {
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.nav {
    background-color: #ffffff;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

hr {
    border: none;
    border-top: 2px solid #00703c;
    margin: 1rem 0;
}

.warning {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.input-text {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: start;
}

.btn-green {
    background-color: #00573f;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-green:hover {
        background-color: #004a36;
    }

.shape-date {
    margin-top: 1rem;
    display: block;
    font-style: italic;
    color: #555;
}

/* Reset default RadPanelBar styles */
.RadPanelBar_Default .rpItem {
    background: none;
    border: none;
}

.custom-menu {
    background-color: #00573f;
    border-radius: 6px;
    padding: 0.25rem;
}

    .custom-menu .rpItem {
        margin: 0.25rem 0;
    }

    .custom-menu .rpLink {
        display: block;
        padding: 0.6rem 1rem;
        color: white;
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px;
        box-sizing: border-box; /* Add this */
    }
    .custom-menu .rpSelected {
        background-color: #f2e500 !important;
        color: #00573f !important;
        border-radius: 4px;
    }

    .custom-menu .rpLink {
        display: block;
        padding: 0.6rem 1rem;
        color: white;
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px;
    }

        .custom-menu .rpLink:hover {
            font-style: italic;
            box-sizing: border-box; /* Add this to ensure consistent sizing */
        }

    .custom-menu .rpGroup,
    .custom-menu .rpRootGroup {
        background-color: #00573f;
        padding: 0;
    }

    .custom-menu .rpOut,
    .custom-menu .rpExpandHandle {
        display: none !important;
    }



.nav {
    display: flex;
    justify-content: center;
}

.RadInput_Forest .riTextBox {
    background-color: #fff !important;
    color: #000 !important;
    font-size: 1rem !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    border: 1px solid #ccc !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    box-sizing: border-box;
}