@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #fff;
    color: #333;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a67d8;
}

header nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #5a67d8;
}

.hero {
    background: #5a67d8;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .cta {
    background: #fff;
    color: #5a67d8;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .cta:hover {
    background-color: #e2e8f0;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    text-align: center;
    background-color: #fff;
}

.feature {
    max-width: 300px;
    padding: 2rem;
}

.feature h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #5a67d8;
}

.about {
    padding: 4rem 10%;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header nav {
        margin-top: 1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 2rem;
    }
}
/* --- Professional Form Action Buttons --- */

/* Container for buttons */
.form-actions {
    display: flex;
    /* Makes buttons align horizontally */
    gap: 15px;
    /* Adds space between buttons */
    margin-top: 30px;
    /* Space above the buttons */
    justify-content: flex-start;
    /* Aligns buttons to the left */
    padding: 15px 0;
    /* Vertical padding */
    border-top: 1px solid #eee;
    /* Subtle line above buttons */
}

/* Base button styles */
.form-actions .btn-primary,
.form-actions .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    /* Larger padding for a more substantial feel */
    font-size: 1rem;
    /* Clearer font size */
    font-weight: 600;
    /* Bolder text for importance */
    text-decoration: none;
    /* Remove underline for links */
    border-radius: 8px;
    /* Slightly more rounded corners */
    cursor: pointer;
    /* Indicate it's clickable */
    transition: all 0.3s ease;
    /* Smooth transitions for hover effects */
    text-align: center;
    border: 1px solid transparent;
    /* Default transparent border */
}

/* Primary Button (Save Changes) */
.form-actions .btn-primary {
    background-color: #4CAF50;
    /* Green for save/success */
    color: #ffffff;
    /* White text */
    border-color: #4CAF50;
    /* Matching border color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.form-actions .btn-primary:hover {
    background-color: #45a049;
    /* Slightly darker green on hover */
    border-color: #45a049;
    transform: translateY(-2px);
    /* Slight lift effect */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow on hover */
}

/* Secondary Button (Cancel) */
.form-actions .btn-secondary {
    background-color: #f0f0f0;
    /* Light grey for cancel/neutral */
    color: #555555;
    /* Dark grey text */
    border-color: #cccccc;
    /* Grey border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

.form-actions .btn-secondary:hover {
    background-color: #e0e0e0;
    /* Slightly darker grey on hover */
    border-color: #bbbbbb;
    transform: translateY(-1px);
    /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow on hover */
}

/* Optional: Make inputs/textareas slightly nicer */
.report-table input[type="text"],
.report-table textarea {
    width: 90%;
    /* Adjust as needed */
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    /* Include padding in width */
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.report-table input[type="text"]:focus,
.report-table textarea:focus {
    border-color: #007bff;
    /* Highlight on focus */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    outline: none;
    /* Remove default outline */
}