/* styles.css */
@import 'navbar.css';
@import 'footer.css';
@import 'modal.css';
@import 'form.css';
@import 'spinner.css';

body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0 0 150px;
}

.container {
    margin-left: 50px;
    margin-right: 50px;
}

#uploadForm {
    margin-bottom: 20px;
}

#uploadStatus {
    margin-top: 10px;
    color: green;
    font-weight: bold;
}

.pressable-btn {
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    border-radius: 5px;
}

.pressable-btn:active {
    transform: translateY(2px);
}

.edit-btn {
    background-color: #4CAF50; /* Green background */
    border: none;
    color: white;
}

.edit-btn:hover {
    background-color: #45a049; /* Darker shade of green */
}

.edit-btn:active {
    background-color: #3e8e41;
    transform: translateY(2px);
}

.submit-btn {
    background-color: #5535bd;
    border: none;
    color: white;
}

.submit-btn:hover {
    background-color: #392480;
}

.submit-btn:active {
    background-color: #392480;
    transform: translateY(2px);
}

.delete-btn {
    background-color: #b01717;
    border: none;
    color: white;
}

.delete-btn:hover {
    background-color: #6e0e0e;
}

.delete-btn:active {
    background-color: #6e0e0e;
    transform: translateY(2px);
}

.std-btn {
    background-color: #333;
    border: none;
    color: white;
}

.gallery-container {
    width: 95%;
    margin: 10px auto auto;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

img {
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.manageArtTable {
    border-collapse: collapse;
}

.manageArtTable td {
    padding: 10px 15px;
}

.manageArtTable tr th {
    border-bottom: 3px solid #777;
}

.manageArtTable tr td {
    border-bottom: 1px solid #777;
}

.manageArtTable tr:last-child td {
    border-bottom: none;
}

.manageCategoryLabel {
    color: white;
    background-color: #007bff;
    border-radius: 3px;
    font-weight: bold;
    padding: 3px 6px;
    text-align: center;
}

img[data-link] {
    cursor: pointer;
}