/* Experience App Styles */
.experience-list {
    padding: 16px 16px 50px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    height: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Additional style to hide scrollbars for Firefox */
.experience-list {
    scrollbar-width: none;
}

.experience-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 30px;
    border-left: none;
    /* Glass card */
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.2s ease;
    transform: translateY(20px);
    opacity: 0;
}

.experience-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.experience-item:last-child {
    margin-bottom: 10px;
}

.experience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.experience-header {
    margin-bottom: 8px;
}

.date, .experience-date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
    display: block;
}

.experience-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.experience-item h4 {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #666;
}

.experience-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 12px;
}

.experience-item ul {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 18px;
}

.experience-item ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
}

.experience-item ul li:last-child {
    margin-bottom: 0;
}

/* App content scrolling fixes */
#experience-app .app-content {
    background-color: #f5f5f7;
    overflow: hidden;
    height: calc(100% - 44px); /* Subtract header height */
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

/* Status bar styling for consistency */
.status-bar {
    background-color: transparent;
} 