
/*
body { font-family: sans-serif; margin: 0; padding: 0; background-color: #f8f9fa; }
.header { background-color: #343a40; color: white; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }
.header .user-info { font-size: 0.9em; }
.header a { color: #adb5bd; text-decoration: none; margin-left: 15px; }
.header a:hover { color: white; }
.container { max-width: 1140px; margin: 20px auto; padding: 20px; background: white; border-radius: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
nav ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
nav ul li { display: inline-block; margin-right: 10px; }
nav a { text-decoration: none; padding: 8px 12px; background-color: #e9ecef; color: #495057; border-radius: 3px; }
nav a:hover { background-color: #dee2e6; }

rgb(236, 250, 229)
rgb(221, 246, 210)
rgb(202, 232, 189)
rgb(176, 219, 156)

rgb(83, 125, 93)
rgb(115, 148, 107)
rgb(158, 188, 138)
rgb(210, 208, 160)

#1A2902
#344C11
#778D45
#AEC09A
#AEC670
*/
:root {
  --main-bg: rgb(83, 125, 93);
}

body { font-family: sans-serif; margin: 0; padding: 0; background-color: rgb(83, 125, 93); min-height: 100vh;}
.header { background-color: #1A2902; color: white; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }
.header .user-info { font-size: 0.9em; }
.header a { color: #adb5bd; text-decoration: none; margin-left: 15px; }
.header a:hover { color: white; }
.container { max-width: 1140px !important; margin: 20px auto; padding: 20px; background: white; border-radius: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
nav ul { list-style: none; padding: 0; margin: 0 0 20px 0; border-bottom: 1px solid #dee2e6; padding-bottom: 10px;}
nav ul li { display: inline-block; margin-right: 10px; }
nav a { text-decoration: none; padding: 8px 12px; background-color: #e9ecef; color: #495057; border-radius: 3px; font-size: 0.9em;}
nav a:hover { background-color: #dee2e6; }
nav a:hover, nav a.active { background-color: #778D45; color: white; }


table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9em; }
th, td { border: 1px solid #dee2e6; padding: 8px 12px; text-align: left; vertical-align: top; }
th { background-color: #e9ecef; font-weight: bold; }
tr:nth-child(even) { background-color: #f8f9fa; }
.action-links a { margin-right: 10px; color: #007bff; }
.action-links a:hover { text-decoration: underline; }
.form-container { margin-top: 30px; padding: 25px; border: 1px solid #dee2e6; border-radius: 5px; background-color: #f8f9fa; max-width: 700px; }
.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 6px; font-weight: bold; }
input[type="text"], input[type="email"], input[type="password"], select { width: 100%; padding: 10px; border: 1px solid #ced4da; border-radius: 4px; box-sizing: border-box; }
input[type="checkbox"] { width: auto; margin-right: 8px; vertical-align: middle;}
button { padding: 10px 18px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 1em; margin-right: 10px;}
button:hover { background-color: #218838; }
button.cancel { background-color: #6c757d; }
button.cancel:hover { background-color: #5a6268; }
.error, .feedback { padding: 15px; margin-bottom: 20px; border-radius: 4px; }
.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.feedback { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-active { color: green; }
.status-inactive { color: red; }
.status-unverified { color: orange; font-style: italic; }
.tooltip { position: relative; display: inline-block; cursor: help; }
.tooltip .tooltiptext { visibility: hidden; width: 180px; background-color: #555; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -90px; opacity: 0; transition: opacity 0.3s; font-size: 0.8em; font-weight: bolder;}
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }


.admin-section { margin-top: 30px; padding-top: 20px; border-top: 1px solid #dee2e6; }
.message { color: red; font-weight: bold; margin-bottom: 15px; }