.story {
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.story:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
}

.story-title {
    color: #333;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.story-summary {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.story-summary ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.story-summary li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 14px;
}

.story-summary li:last-child {
    margin-bottom: 0;
}

.event-date {
    display: inline-block;
    background-color: #e8f4f8;
    color: #2c5aa0;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 10px;
    min-width: 45px;
    text-align: center;
}

.event-summary {
    color: #555;
    line-height: 1.4;
}

.story.active .story-summary {
    max-height: 300px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.story-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.story-actions a {
    text-decoration: none;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 0;
}

.action-btn i {
    font-size: 16px;
}

.open-btn {
    background-color: #f0f0f0;
    color: #333;
}

.open-btn:hover {
    background-color: #e0e0e0;
}

.follow-btn {
    background-color: #e3f2fd;
    color: #1976d2;
}

.follow-btn:hover {
    background-color: #bbdefb;
}

.read-btn {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.read-btn:hover {
    background-color: #c8e6c9;
}

.notification-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 13px;
    color: white;
    text-align: center;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.notification-circle.read {
    background-color: #000000;
    opacity: 0.0;
}

.notification-circle.new {
    background-color: #3f99b0;
}

.notification-circle.updates {
    background-color: #8e1f22;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .story-header {
        padding: 12px 16px;
    }
    
    .story-title {
        font-size: 16px;
    }
    
    .story.active .story-summary {
        padding: 12px 16px;
    }

    .story-actions {
        flex-direction: row;
        gap: 8px;
    }

    .action-btn {
        padding: 8px 4px;
        font-size: 13px;
    }
}
