.user-dashboard {
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.dashboard-header {
    margin-bottom: 30px;
}

.welcome-message {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.user-name {
    color: #1a73e8;
}

.welcome-subtext {
    color: #6c757d;
}

.approach-shot-card {
    background-color: #28563E; 
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.overall-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.overall-percentage {
    font-size: 24px;
    font-weight: bold;
}

.overall-bar-container {
    width: 150px; 
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.overall-bar-fill {
    height: 100%;
    transition: width 0.5s;
    border-radius: 5px;
}

.progress-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.dashboard-tile {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tile-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tile-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.tile-percentage {
    font-size: 14px;
    font-weight: bold;
}

.progress-bar-container {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar-fill {
    height: 100%;
    transition: width 0.5s;
    border-radius: 3px;
}

.tile-status {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}