﻿/* Override main background to match theme */
main {
    background-color: #1E1E1E !important;
}

/* Wrapper full height */
.detail-info-wrapper {
    --detail-info-text-color: #EDE7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 4.5rem);
    padding: 2rem;
}

/* Login Card */
.detail-info-card {
    width: 350px;
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    color: var(--detail-info-text-color);
    text-align: center;
}

    /* Title */
    .detail-info-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--detail-info-text-color);
    }

/* Input field groups */
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

/* Inputs */
.detail-info-card input[type="text"],
.detail-info-card input[type="password"],
.detail-info-card textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1e1e1e;
    color: var(--detail-info-text-color);
    transition: border-color 0.2s;
}

.detail-info-card input::placeholder {
    color: #aaa;
}

.detail-info-card input:focus {
    border-color: #FFD54F;
    outline: none;
}

/* Remember checkbox */
.remember-row {
    display: flex;
    align-items: center;
    margin: 0.5rem 0 1.2rem;
    font-size: 0.9rem;
    color: #ffd1d1
}

    .remember-row input {
        margin-right: 0.5rem;
        accent-color: #fff5d7;
    }

.cell-wordwarp {
    white-space: normal;
    overflow-wrap: anywhere;
    display: block;
}

.validation-message {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-align: left;
}

.error-msg {
    color: #ff8080;
    margin: 10px;
    font-size: 0.9rem;
}

.success-msg {
    color: #80ff80;
    margin: 10px;
    font-size: 0.9rem;
}

.edit-role {
    background-color: #664d00 !important;
    color: white !important;
    border-color: #cda7ff !important;
}