/* Dashboard specific styles */
:root {
    --primary-dark: #1F2937;
    --bg-light: #FAF9F7;
    --secondary-surface: #F5EFE7;
    --primary-brand: #2E7D32;
    --hover-brand: #245741;
    --accent-gold: #D4A373;
    --accent-sage: #88A096;
    --error: #B00020;
    --success: #0F766E;
}

* {
    box-sizing: border-box;
}

.rdm-dashboard {
    background: var(--bg-light);
    padding: 40px 20px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

.rdm-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.rdm-header-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-gold);
}

.rdm-header h1 {
    font-family: "Manrope", sans-serif;
    font-size: 44px;
    color: var(--primary-dark);
    margin: 20px 0;
}

.rdm-logout-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-brand);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.rdm-logout-btn:hover {
    background: var(--hover-brand);
}

.rdm-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 28px;
}

.rdm-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.rdm-workshop-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.rdm-workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.rdm-workshop-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.rdm-workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rdm-workshop-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.rdm-workshop-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.rdm-enter-workshop {
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 14px 24px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rdm-enter-workshop:hover {
    transform: scale(1.02);
}

.rdm-no-workshops {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary-surface);
    border-radius: 16px;
}

.rdm-workshop-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.rdm-back-btn {
    background: var(--accent-sage);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background 0.3s ease;
}

.rdm-back-btn:hover {
    background: #6A8078;
}

.rdm-no-access {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    text-align: center;
}

.rdm-no-access h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.rdm-login-btn {
    background: var(--primary-brand);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.rdm-login-btn:hover {
    background: var(--hover-brand);
}