.presentations-list {
    max-width: 800px;
    margin: 0 auto;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.project-item:hover {
    border-color: #4a90e2;
    background: #f8fbff;
}

.project-title {
    font-weight: 500;
    flex-grow: 1;
    padding-right: 15px;
    text-decoration: none;
    outline: none;
}

.project-date {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.no-presentations {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-style: italic;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.error-message {
    padding: 20px;
    background: #ffe6e6;
    color: #cc0000;
    border-radius: 8px;
    text-align: center;
}

.project-title a{
    outline: none;
    text-decoration: none;
}

.link-content{
    text-decoration: none;
    outline: none;
}

