.pl-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    font-family: sans-serif;
    color: #fff;
    max-width: 500px;
}

.pl-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.pl-header-title {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.pl-view-list {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.pl-content-row {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 32px;
}

.pl-progress-col {
    flex: 0 0 auto;
}

/* Conic gradient approach for progress circle */
.pl-progress-circle {
    /* Default variables, overridden by controls */
    --progress-color-active: #f39c12;
    --progress-color-bg: #333;
    --progress-thickness: 10px;
    
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--progress-color-active) var(--progress, 0deg), var(--progress-color-bg) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pl-progress-inner {
    width: calc(100% - (var(--progress-thickness) * 2));
    height: calc(100% - (var(--progress-thickness) * 2));
    background-color: inherit; /* inherit card bg or set explicitly */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Use pseudo element to match parent card background if inheriting doesn't work perfectly */
    position: relative;
}
.pl-progress-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1a1a1a; /* Fallback, should match .pl-card bg if possible, or use transparent approach if needed.  For conic gradient, we need solid center. */
    border-radius: 50%;
    z-index: 1;
}
/* Ensure inner content is above the mask */
.pl-progress-inner > * {
    z-index: 2;
    position: relative;
}


.pl-progress-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #f39c12; /* Fallback, should probably match accent */
}

.pl-progress-label {
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 4px;
    color: #ccc;
    max-width: 70%;
    line-height: 1.2;
}

.pl-stats-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pl-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pl-stat-num {
    font-size: 20px;
    font-weight: 700;
    width: 30px;
    text-align: right;
}

.pl-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #aaa;
    letter-spacing: 0.5px;
}

.pl-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    border: 1px solid;
    border-radius: 6px;
    background: transparent;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.pl-btn:hover {
    background-color: rgba(255,255,255,0.05);
}

.pl-btn-icon {
    margin-left: 8px;
    font-size: 16px;
}

.pl-guest {
    text-align: center;
}