/* Customer Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 250px;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.dashboard-main-content {
    flex: 1;
    padding: 20px;
    background-color: #FFECE9;
}

.dashboard-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.dashboard-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #FF4529;
    text-decoration: none;
}

.dashboard-logo span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav li {
    margin: 0;
}

.dashboard-nav a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.dashboard-nav a:hover {
    background-color: #FFECE9;
}

.dashboard-nav .active a {
    background-color: #FF4529;
    color: white;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.user-info {
    color: #666;
    font-size: 14px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    margin-top: 0;
    color: #666;
    font-size: 16px;
}

.stat-card p {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 0;
    color: #FF4529;
}

/* Cards for Offers/Rewards */
.offer-card, .reward-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.offer-header, .reward-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.business-name {
    color: #666;
    font-size: 14px;
}

.offer-meta, .reward-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.points, .points-used {
    color: #FF4529;
    font-weight: bold;
}

.expires, .date {
    color: #666;
}

/* Status Indicators */
.status {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-used {
    background-color: #4CAF50;
    color: white;
}

.status-pending {
    background-color: #FFC107;
    color: #333;
}

.status-expired {
    background-color: #F44336;
    color: white;
}

/* Forms */
.settings-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #FF4529;
    color: white;
}

.btn-primary:hover {
    background-color: #e03e25;
}

.btn-claim {
    background-color: #FF4529;
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-claim:hover {
    background-color: #e03e25;
}

.btn-details {
    background-color: #666;
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-details:hover {
    background-color: #555;
}

.btn-save {
    background-color: #FF4529;
    color: white;
    margin-top: 10px;
}

.btn-save:hover {
    background-color: #e03e25;
}

/* Utility Classes */
.mt-2 {
    margin-top: 20px;
}
