.draft-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease;
}

.draft-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.draft-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.draft-title {
    margin: 0;
    flex: 1;
}

.draft-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.draft-title a:hover {
    color: #3498db;
    text-decoration: underline;
}

.draft-status {
    background: #ffc107;
    color: #856404;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.draft-meta {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-item {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #3498db;
    width: 14px;
}

.draft-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.draft-actions .button-edit-draft,
.draft-actions .button-delete-draft {
    width: auto;
    /* height: 26px; */

    /* max-height: 26px; */

    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s;
}

.button-edit-draft {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button-edit-draft:hover {
    background-color: #1976d2;
}

.button-delete-draft {
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button-delete-draft:hover {
    background-color: #c82333;
}

.no-drafts {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.empty-icon {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-drafts p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.article-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.draft-action-label.desktop-only {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.95rem;
    color: #fff;
}

@media (max-width: 768px) {

    .draft-item {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 4px;
        padding: 10px;
        margin-bottom: 15px;
        transition: box-shadow 0.2s ease;
    }

    .draft-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .draft-status {
        align-self: flex-start;
    }

    .draft-meta {
        flex-direction: column;
        gap: 8px;
    }

    .draft-actions {
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
    }

    .draft-actions .button-edit-draft,
    .draft-actions .button-delete-draft {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
        font-size: 0.8rem;
        padding: 0;
    }

    .draft-action-label.desktop-only {
        display: none !important;
    }
}