Added back the css templates and added logout button

This commit is contained in:
2025-11-17 13:03:25 +01:00
parent 883439e66f
commit 5ff361b97c
4 changed files with 90 additions and 0 deletions

View File

@@ -128,4 +128,35 @@ picture {
.login-footer a:hover {
text-decoration: underline;
}
/* Header Styles */
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
width: 100%;
margin-bottom: 2rem;
}
.header-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.logout-btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #7f5af0; /* Same as .btn-primary */
color: #ffffff;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
transition: background-color 0.2s ease;
}
.logout-btn:hover {
background-color: #6a48d7; /* Same as .btn-primary:hover */
}