
/* Edit blog */
.edit-blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.edit-blog-title {
    color: #343a40;
    margin-bottom: 20px;
    text-align: center;
}

.edit-blog-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-control,
.form-control-file {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.edit-blog-button {
    background-color: burlywood;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-blog-button:hover {
    background-color: burlywood;
}

.edit-blog-subtitle {
    color: #343a40;
    margin-top: 30px;
}

.existing-images-container, .existing-videos-container {
    display: flex;
    flex-wrap: wrap;
}

.image-block {
    margin: 10px;
    text-align: center;
}

.blog-image {
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.delete-image-button,
.delete-blog-button, .delete-video-button {
    display: flex;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 10px;

}

.delete-image-button:hover,
.delete-blog-button:hover, .delete-video-button {
    background-color: #c82333;
}

.no-images-found {
    color: #6c757d;
    text-align: center;
    margin-top: 20px;
}

.cancel-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: burlywood;
}

.cancel-link:hover {
    text-decoration: underline;
}
