/* Profil Fotoğrafı Buton Stilleri */
.btn-profile-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border: 2px solid;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: flex-start;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-profile-action:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-profile-action:hover:before {
    left: 100%;
}

.btn-primary-action {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #047857 100%);
}

.btn-primary-action:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-danger-action {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: var(--danger);
    color: var(--danger);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.btn-danger-action:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-danger-action:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.btn-profile-action i {
    font-size: 1.1rem;
    min-width: 18px;
    text-align: center;
}

.btn-profile-action span {
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Picture Actions Container */
.picture-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .picture-actions {
        min-width: auto;
        width: 100%;
    }
    
    .btn-profile-action {
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .profile-picture-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Loading state */
.btn-profile-action.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-profile-action.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.btn-profile-action.success {
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    border-color: var(--success);
    color: white;
}

.btn-profile-action.success i {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Input Note Styles */
.input-note.unverified {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.input-note.unverified:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateX(2px);
}

.input-note.unverified i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}