@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --primary-accent-color: rgb(134, 65, 238); /* global scope */
  --max-width: 1800px;
}
body {
    margin:0px;
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
}

.page_wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
   
}

main {
    overflow-y: auto;
    flex:1;
    padding-left: 60px;
    padding-right: 60px;

}
.main-content {
    max-width: var(--max-width);
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex:1;
     padding-top:15px;
}

.search-form input {
    display: block;
    width: 100%;
}
header .logo {
      font-family: Tahoma, sans-serif;
      font-size: 3rem;
      letter-spacing: -2px;
      font-weight:bold;
    
  
}

header .header-content {
    display: flex;
    align-items: center;
    gap:25px;
}

.header_wrap {
    padding-left:60px;
    padding-right:60px;
    height:70px;
    background-color:var(--primary-accent-color);
}

header {
    height: 100%;
    display: flex;
    max-width: var(--max-width);
    margin: auto;
    justify-content: space-between;
    flex-direction: column;
    color:white;
}

header .header-subc {
    display: block;
    flex:1;
}

header a i {
    color:white;
    opacity: 0.6;
    font-size: 2rem;
}

nav {
    display: flex;
    gap: 25px;
}
nav a {
    text-decoration: none;
    justify-content: center;
    display: block;
}

nav a:hover i {
    opacity: 1;
}

.search-table {
    border: solid 1px black;
    border-collapse: collapse;
}

.search-table td {
    border-top: 1px solid rgb(224,223,224);
}
.search-table th {
    text-align: left;
}

.search-table tr:nth-child(odd) {
    background-color: rgb(233,233,233);
}
.search-table tr:hover {
    background-color: rgb(220, 219, 219);
}

.search-table .header th {
    background-color: rgb(220, 219, 219);
}

.create-form input {
    width:50%;
}
.create-form label {
    display: block;
    margin-top: 5px;
}
