body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    margin-top: 20px;
}

/* Container */
.container {
    width: 60%;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Input Fields */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    height: 120px;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #007bff;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* Image Preview */
#preview {
    margin-top: 10px;
    border-radius: 8px;
}




body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
}

/* Header */
.header {
    background: #343a40;
    color: #fff;
    padding: 15px 20px;
    font-size: 20px;
}

/* Container */
.container {
    width: 90%;
    margin: 30px auto;
}

/* Title */
h2 {
    margin-bottom: 20px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

table th {
    background: #007bff;
    color: #fff;
    padding: 12px;
    text-align: left;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

table tr:hover {
    background: #f9f9f9;
}

/* Image */
table img {
    border-radius: 6px;
}

/* Buttons */
.action-btn {
    padding: 6px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
}

.edit {
    background: #28a745;
}

.delete {
    background: #dc3545;
}

.view {
    background: #17a2b8;
}

.action-btn:hover {
    opacity: 0.8;
}