/* 2009-2010 Enterprise Dashboard Style */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Verdana, Arial, sans-serif;
    background-color: #2d5a8c;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.05) 100px,
        rgba(255, 255, 255, 0.05) 200px
    );
    background-attachment: fixed;
    color: #333;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;

    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='220' height='160'>\
<text x='0' y='110' fill='white' fill-opacity='0.20' \
font-size='22' font-weight='bold' \
transform='rotate(-30 110 80)'>CONFIDENTIAL</text>\
</svg>");
    background-repeat: repeat;
}

.no-watermark {
    position: relative;
    z-index: 5;
}

.login-background {
}

.login-background::before {
}

.login-container {
    position: relative;
    z-index: 10;
    width: 400px;
    margin: 100px auto;
    background: #fff;
    border: 2px solid #1a3d5c;
    padding: 0;
}

.login-header {
    background: linear-gradient(to bottom, #4a7ba7, #2d5a8c);
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #1a3d5c;
}

.login-body {
    padding: 30px;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border: 2px solid #1a3d5c;
    padding: 0;
}

.header {
    background: linear-gradient(to bottom, #4a7ba7, #2d5a8c);
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #1a3d5c;
}

.content {
    padding: 20px;
}

.nav {
    background: #e8f0f8;
    border-bottom: 2px solid #1a3d5c;
    padding: 10px 20px;
}

.nav a {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 10px;
    background: linear-gradient(to bottom, #6a9bc7, #4a7ba7);
    color: white;
    text-decoration: none;
    border: 1px solid #1a3d5c;
    font-size: 14px;
}

.nav a:hover {
    background: linear-gradient(to bottom, #7aabd7, #5a87b7);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th {
    background: linear-gradient(to bottom, #4a7ba7, #2d5a8c);
    color: white;
    padding: 10px;
    text-align: left;
    border: 1px solid #1a3d5c;
    font-weight: bold;
}

table td {
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
}

table tr:nth-child(even) td {
    background: #f5f5f5;
}

table td a {
    color: #0000EE;
    text-decoration: underline;
}
table td a:visited {
    color: #0000EE;
}
table td a:hover {
    color: #0000CC;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group textarea {
    width: 95%;
    padding: 8px;
    border: 1px solid #999;
    background: #fff;
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input[type="checkbox"] {
    margin-right: 5px;
}

.button {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to bottom, #6a9bc7, #4a7ba7);
    color: white;
    border: 1px solid #1a3d5c;
    cursor: pointer;
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
}

.button:hover {
    background: linear-gradient(to bottom, #7aabd7, #5a87b7);
}

.button-danger {
    background: linear-gradient(to bottom, #c74a4a, #a73d3d);
}

.button-danger:hover {
    background: linear-gradient(to bottom, #d75a5a, #b74d4d);
}

.actions {
    margin-top: 20px;
}

.actions a {
    margin-right: 10px;
}

.special-user-icon {
    display: inline-block;
    color: gold;
    font-size: 16px;
    margin-left: 5px;
}

.detail-row {
    margin-bottom: 15px;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ccc;
}

.detail-label {
    font-weight: bold;
    color: #2d5a8c;
    margin-bottom: 5px;
}

.detail-value {
    color: #333;
}

.error {
    color: #c74a4a;
    padding: 10px;
    background: #ffe8e8;
    border: 1px solid #c74a4a;
    margin-bottom: 20px;
}

.success {
    color: #4a7ba7;
    padding: 10px;
    background: #e8f0f8;
    border: 1px solid #4a7ba7;
    margin-bottom: 20px;
}