
body {
    background-color: #F9F9F9; /* Light gray background */
    color: #333; /* Dark text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
    margin: 0; /* Remove default margin */
    font-size: 14px;
}

.dropdown-menu li.selected {
    color: green;
}

.hero {
    background-color: #0e0e1a; /* Black background */
    color: #FFFFFF; /* White text */
    padding: 14px 20px; /* Padding */
    text-align: left; /* Align content to the left */
}

    .hero h1 {
        font-size: 1.7rem; /* Font size for heading */
        font-weight: 700; /* Bold */
        margin-bottom: 13px;
        margin-top: 29px;
    }

    .hero p {
        font-size: 1.125rem; /* Slightly larger text */
        margin-bottom: 30px;
        font-weight: 400; /* Normal weight */
    }

.cta-button {
    background-color: #FFFFFF;
    color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    border: 2px solid #000000;
    font-size: 1rem;
}

    .cta-button:hover {
        background-color: #000000;
        color: #FFFFFF;
        border-color: #000000;
    }

/* Tool Cards */
.tool-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

    .tool-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .tool-card h3 {
        font-size: 1.25rem; /* Heading size */
        font-weight: 600; /* Semi-bold */
        color: #000000; /* Black text */
    }

    .tool-card p {
        color: #555; /* Darker gray text */
        font-size: 0.875rem; /* Smaller text */
        font-weight: 400; /* Normal weight */
    }

/* Footer Styling */
/*footer {

}*/

.footer{
background-color: #FFFFFF;
color: #333;
text-align: center;
padding: 30px 20px;
border-top: 1px solid #E0E0E0;
position: relative;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 0px;
}

    footer p {
        margin: 0;
        font-size: 0.875rem; /* Smaller text */
        font-weight: 400; /* Normal weight */
    }

    footer a {
        color: #007BFF; /* Blue text */
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }


/* Line Separator */
.separator {
    border-top: 2px solid #E0E0E0; /* Light gray line */
    margin: 20px 0; /* Spacing above and below */
}

.form-control {
    border-radius: 5px;
    border-color: #E0E0E0;
}

.btn-primary {
    background-color: #FF6600; /* Primary color */
    border-color: #FF6600; /* Primary color */
    font-weight: bold;
}

    .btn-primary:hover {
        background-color: #FF4500; /* Darker orange */
        border-color: #FF4500; /* Darker orange */
    }

.result {
    background-color: #F8F9FA; /* Light background */
    border: 1px solid #E0E0E0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    word-wrap: break-word; /* Wrap long text */
}


.outputBorder {
    border: 1px solid #dee2e6 !important;
}