/* Fonts */


body {
    font-family: 'Sony Sketch', sans-serif;
    margin: 0;
    background-color: #272737; /* Matt's favorite background color */
    color: #ecf0f1;
}

nav {
    background: #1a1a24;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #3498db;
}

h1, h2 { letter-spacing: 1px; }

.container { padding: 2rem; max-width: 1000px; margin: auto; }
.login-container { 
    width: 500px; margin: 100px auto; padding: 2rem; 
    background: #363649; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    text-align: center;
}

/* Forms */
input, textarea {
    width: 100%; padding: 10px; margin: 10px 0;
    box-sizing: border-box; border: 1px solid #555;
    background: #46465b; color: white;
    font-family: inherit;
    border-radius: 4px;
}
textarea { resize: vertical; }

button {
    background: #3498db; color: white; border: none;
    padding: 10px 20px; cursor: pointer; border-radius: 4px;
    font-family: inherit; font-size: 1rem;
}
button:hover { background: #2980b9; }

/* Table */
table { width: 100%; border-collapse: collapse; background: #363649; margin-top: 20px; border-radius: 8px; overflow: hidden; }
th, td { padding: 15px; border-bottom: 1px solid #46465b; text-align: left; }
th { background: #1a1a24; color: #3498db; text-transform: uppercase; font-size: 0.9rem; }
tr:hover { background: #404055; }

/* Modals */
.modal { display: none; position: fixed; z-index: 10; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.modal-content { background: #363649; margin: 10% auto; padding: 20px; width: 400px; border-radius: 8px; border: 1px solid #555; }
.close { float: right; font-size: 28px; cursor: pointer; color: #aaa; }
.close:hover { color: white; }

.controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.search-form { display: flex; gap: 10px; }
.btn-logout { color: #e74c3c; text-decoration: none; margin-left: 15px; }
.btn-import { background: #27ae60; margin-right: 10px;} 
.clear-btn { color: #aaa; padding-top: 10px; text-decoration: none;}