﻿/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Light background color */
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.button-box {
    background-color: #ffffff; /* White background */
    border: 1px solid #007ac3; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    padding: 20px; /* Space inside the box */
    text-align: center; /* Center-align text and buttons */
}

.nav-link {
    display: inline-block;
    margin: 10px; /* Space between links */
    padding: 10px 20px; /* Padding to make it look like a button */
    border: 1px solid transparent; /* Initially transparent border */
    border-radius: 5px; /* Rounded corners */
    background-color: #007ac3; /* Light button-like background */
    color: #343a40; /* Dark text color */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

    /*.nav-link:hover {
        background-color: #dae0e5;*/ /* Darker shade on hover */
        /*border-color: #adb5bd;*/ /* Change border color on hover */
        /*color: #212529;*/ /* Slightly darker text on hover */
    /*}*/
