/*.header {
    background-color: white;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}*/
.app-container {
    background-color: white;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.app-card {
    display: flex;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}
.app-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}
.app-content {
    flex: 1;
}
.app-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}
.app-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}
