/* Paper Box Styles */
.paper-box {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background-color: #fafafa;
    transition: box-shadow 0.3s ease;
}

.paper-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.paper-box-image {
    flex: 0 0 180px;
    margin-right: 20px;
    position: relative;
}

.paper-box-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #7d66bc;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.paper-box-text {
    flex: 1;
}

.paper-box-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    line-height: 1.3;
}

.paper-box-text .authors {
    margin: 8px 0;
    font-size: 16px;
    color: #555;
}

.paper-box-text .venue {
    margin: 8px 0;
    font-size: 15px;
    font-style: italic;
    color: #666;
}

.paper-box-text .links {
    margin-top: 12px;
}

.paper-box-text .links a {
    display: inline-block;
    margin-right: 15px;
    padding: 4px 12px;
    background-color: #7d66bc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.paper-box-text .links a:hover {
    background-color: #6a56a3;
    text-decoration: none;
}

@media (max-width: 768px) {
    .paper-box {
        flex-direction: column;
        text-align: center;
    }
    
    .paper-box-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 200px;
        align-self: center;
    }
} 