/* Badge Design System */
.status-badges {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.status-badge {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Variant: Favori (#ff6b3d - #ffb830) */
.badge-favori {
    background: linear-gradient(135deg, #ff6b3d 0%, #ffb830 100%);
    border-color: rgba(255, 184, 48, 0.4);
}

/* Variant: Öneri (#5d6fd4 - #785e96) */
.badge-oneri {
    background: linear-gradient(135deg, #5d6fd4 0%, #785e96 100%);
    border-color: rgba(120, 94, 150, 0.4);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Variant: Tercih (#a3005f - #ff003c) */
.badge-tercih {
    background: linear-gradient(135deg, #a3005f 0%, #ff003c 100%);
    border-color: rgba(255, 0, 60, 0.4);
}

/* Variant: Manuel (Same as Tercih) */
.badge-manuel {
    background: linear-gradient(135deg, #a3005f 0%, #ff003c 100%);
    border-color: rgba(255, 0, 60, 0.4);
}

/* Interactive Öneri Badge Container */
.badge-oneri-container {
    position: relative;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Base Badge Style override for animation context */
.badge-oneri {
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

/* Common Button Styles */
.oneri-action-btn {
    position: absolute;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* Accept Button (Green +) */
.accept-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    right: -30px;
}

/* Reject Button (Red X) */
.reject-btn {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
    left: -30px;
}

/* EXPANDED STATE */
.badge-oneri-container.expanded .accept-btn,
.badge-oneri-container.expanded .reject-btn {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* Hover effects */
.oneri-action-btn:hover {
    transform: scale(1.1);
}

.accept-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.reject-btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Specific Icon Styling */
.oneri-action-btn svg,
.oneri-action-btn i {
    width: 12px;
    height: 12px;
    stroke-width: 2px;
}