/* Hamburger Menu styles */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(107, 33, 168, 0.3);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #6b21a8;
    border-radius: 2px;
}

/* History List Styles */
.history-entry {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-entry:hover {
    border-color: #7c3aed;
    background: #f5f3ff;
    transform: translateX(5px);
}

.history-date {
    font-weight: bold;
    color: #1f2937;
    font-size: 1.1rem;
}

.history-time {
    color: #6b7280;
    font-size: 0.9rem;
}

.history-resume-label {
    background: #7c3aed;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Main Menu Action Buttons */
.menu-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.menu-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #7c3aed;
    background: #fdfbff;
}

.menu-action-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: inherit;
}

.menu-action-btn:hover .menu-action-icon {
    background: #f3e8ff;
    transform: scale(1.1);
}

.menu-action-btn span {
    font-size: 14px;
    font-weight: 700;
}
