.article-dashboard-container {
    padding: 30px 50px;
    background-color: #f9f9f9;
    min-height: 100vh;
    margin: auto;
}

.article-dashboard-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.add-button {
    display: inline-block;
    background-color: var(--primary-Color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.add-button:hover {
    background-color: var(--primary-Color);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

thead {
    background-color: #f0f0f0;
}

th, td {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

th {
    font-weight: 600;
}

td img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

td a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

td a:hover {
    text-decoration: underline;
}

form {
    display: inline;
}

button {
    background-color: transparent;
    border: none;
    color: #dc3545;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .article-dashboard-container {
        padding: 20px;
    }

    th, td {
        font-size: 14px;
        padding: 10px;
    }

    .add-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    td img {
        width: 70px;
    }
}
