/* Birthday Manager Plugin Styles */
.birthday-list {
    margin: 0;
    padding: 0;
}

.birthday-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.birthday-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Remove color declarations to let Oxygen styling take precedence */
.birthday-item strong {
    font-weight: 600;
    margin-right: 8px;
    flex-shrink: 0;
    /* Color will be inherited from Oxygen styling */
}

.birthday-item .birthday-team {
    font-size: 11px;
    font-style: italic;
    margin-left: 4px;
    opacity: 0.8;
    /* Color will be inherited from Oxygen styling */
}

/* Widget specific styles - minimal color overrides */
.widget.birthday-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    border: 2px solid #4a7c59;
    max-width: 250px;
}

/* Only style the heading, let content inherit from Oxygen */
.widget.birthday-widget h3,
.widget.birthday-widget h4 {
    color: #2d5a3d !important;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #4a7c59;
}

/* No birthdays message */
.birthday-list p {
    font-style: italic;
    margin: 0;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    /* Color will be inherited from Oxygen styling */
}

/* Floating widget specific styles */
.floating-widget {
    position: fixed;
    z-index: 1000;
    background: rgba(76, 124, 89, 0.9);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 2px solid #4a7c59;
    max-width: 250px;
    backdrop-filter: blur(5px);
    /* Text color will be inherited from Oxygen styling */
}

.floating-widget.birthday-widget {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-widget.match-widget {
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .floating-widget {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .widget.birthday-widget {
        margin-bottom: 15px;
        padding: 12px;
        max-width: 100%;
    }
    
    .birthday-item {
        padding: 6px 0;
        font-size: 12px;
    }
}
