/* Luxury Agent Dashboard Stylesheet */

.lre-dash-wrap {
    background-color: #0e0e11;
    color: #e5e5e7;
    border: 1px solid #222228;
    border-radius: 8px;
    padding: 35px;
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Outfit', sans-serif;
}

.lre-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222228;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.lre-dash-title {
    font-size: 26px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.lre-dash-btn {
    background: #d4af37;
    color: #111;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.lre-dash-btn:hover {
    background: #e6bf40;
}

.lre-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lre-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.lre-form-group.full-width {
    grid-column: 1 / -1;
}

.lre-form-group label {
    font-size: 13.5px;
    color: #a0a0b0;
    margin-bottom: 6px;
}

.lre-form-group input,
.lre-form-group select,
.lre-form-group textarea {
    background: #16161b;
    border: 1px solid #2a2a32;
    border-radius: 4px;
    padding: 11px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
}

.lre-form-group input:focus,
.lre-form-group select:focus,
.lre-form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.lre-agent-properties-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}

.lre-agent-properties-table th,
.lre-agent-properties-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #1f1f26;
    text-align: left;
    font-size: 14px;
}

.lre-agent-properties-table th {
    background: #141418;
    color: #888899;
    font-weight: 400;
}

.lre-action-icon-btn {
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    margin-right: 8px;
    font-size: 15px;
    transition: color 0.2s ease;
}

.lre-action-icon-btn.delete-btn:hover { color: #f87171; }
.lre-action-icon-btn.edit-btn:hover { color: #d4af37; }
