﻿/* Reset some default margin and padding */
body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;


    /*background: #106eea;*/
}

/* Style the header */
.header {
    background-color: #01233E;
    display: flex;
    height: 82px;
    justify-content: space-between; /* Align items horizontally with space between */
    align-items: center;
    /* padding: 10px 20px;*/
}


a {
    color: #FFF;
    text-decoration: none;
}

    a:hover {
        color: #ffd800;
        text-decoration: none;
    }
.centered-detailsview {
    margin: 0 auto;
}
.center {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.centered-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust this value based on your design */
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust this value based on your design */
}

.delete-button {
    margin-top: 25px; /* Adjust the value as needed */
}

/* Style the logo */
.logo img {
    max-width: 400px;
}

/* Style the navigation menu */
.menu ul {
    list-style-type: none;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center; /* Vertically center align menu items */
}

.menu li {
    font-size: 16px;
    color: #fff;
    margin-left: 20px; /* Adjust spacing between menu items */
}

.menu a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
   
}

    .menu a:hover {
        font-size: 16px;
        color: #ffd800;
        text-decoration: underline;
    }
