.rap-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rap-container h2 {
    margin-bottom: 20px;
}

.rap-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.rap-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
	color: #000;
}

.rap-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.rap-btn:hover {
    background: #b71c1c;
}

.rap-form button {
    margin-top: 20px;
    padding: 10px 20px;
}

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

.rap-table th,
.rap-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.rap-danger {
    margin-top: 20px;
    padding: 12px 20px;
    background: #c0392b;
    color: #fff;
    border: none;
    cursor: pointer;
}

.rap-note {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.rap-container input[type="email"],
.rap-container input[type="password"] {
    color: #000 !important;
    background-color: #fff !important;
}

/* Placeholder color */
.rap-container input::placeholder {
    color: #555 !important;
}

/* On focus */
.rap-container input:focus {
    color: #000 !important;
    background-color: #fff !important;
}

.rap-status.pending {
    color: #d97706;
    font-weight: 600;
}

.rap-status.cancelled {
    color: #dc2626;
    font-weight: 600;
}

