body {background-color: #006633;
color: #000000;
font-family: arial;
}

#header {color: #ffffff;
}

#main {
	overflow: hidden;
	background-color: #ffff99;
	padding: 20px;
	margin: 0 auto;
}

.photos {float: left;
margin: 5px;
}

.photos img {width: 200px;
}

.photo-detail img {
	max-width: 600px;
	max-height: 60vh;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border: 3px solid red;
}
	
@media (max-width: 600px) {
	body {
		font-size: 18px;
	}
	
	#header h1 {
		font-size: 24px;
	}
	
	#footer {
		font-size: 14px;
	}
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.session-bar {
    background-color: #004d33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    min-height: 40px;
    gap: 10px;
}

.welcome-text {
    float: left;
    font-weight: bold;
    color: #ffffff;
}

.login-link {
    float: right;
    text-decoration: none;
    background-color: #5bc0de;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-link:hover,
.login-link:active {
    background-color: #31b0d5;
    box-shadow: 0 0 8px rgba(49, 176, 213, 0.6);
    color: white;
}

.login-link:link,
.login-link:visited {
    color: white;
    background-color: #5bc0de;
    text-decoration: none;
}

.logout-link {
    float: right;
    text-decoration: none;
    background-color: #d9534f;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.logout-link:hover {
    background-color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
}

#footer {
	color: #ffffff;
	clear: both;
}