body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}

        .sidebar {
            width: 240px;
            position: fixed;
            height: 100%;
            background-color: #2c3e50;
            padding-top: 20px;
            color: #ecf0f1;
        }

        .sidebar h3 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .sidebar ul {
            list-style-type: none;
            padding: 0;
        }

        .sidebar ul li {
            margin: 10px 0;
        }

        .sidebar ul li a {
            color: #ecf0f1;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: all 0.3s;
        }

        .sidebar ul li a:hover {
            background-color: #34495e;
            border-left: 4px solid #1abc9c;
        }

        .content {
            margin-left: 250px;
            padding: 20px;
            width: calc(100% - 220px);
            box-sizing: border-box;
        }
.message {
    color: #d9534f;
    margin-bottom: 15px;
}

.form-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-box {
    width: 45%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form button {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 6%;
}

form button:hover {
    background-color: #4e972e;
}

.zebra-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.zebra-table th, .zebra-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.zebra-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.zebra-table tr:hover {
    background-color: #ddd;
}

.zebra-table th {
    background-color: #333;
    color: white;
}

textarea[name="notes"] {
    height: 200px;
}

textarea[name="bio"] {
    height: 200px;
}

textarea[name="shack_description"] {
    height: 200px;
}

.btn-red {
    display: inline-block;
    padding: 5px 10px;
    background-color: #4e972e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn-red:hover {
    background-color: #333;
}

.button-group {
    display: flex;
    gap: 0; /* No gap for seamless button alignment */
    justify-content: space-between;
}

.btn-blue {
    display: inline-block;
    width: 6%; /* Each button takes 49% of the available width */
    text-align: center; /* Centers the text */
    padding: 15px 0; /* Adds vertical padding */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none; /* Removes underline for links */
    box-sizing: border-box; /* Includes padding in width calculation */
    border-radius: 4px; /* Adds rounded corners */
    background-color: #007BFF; /* Primary blue color */
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-blue:hover {
    background-color: #333; /* Darker blue on hover */
}

.btn-container {
    display: flex; /* This will place the buttons side by side */
    justify-content: space-between; /* Ensures there is space between the buttons */
    width: 100%; /* Makes sure the container takes full width */
}

.btn-black, .btn-red {
    width: 48%; /* Buttons will each take up 48% of the available space */
    padding: 10px 0; /* Uniform padding for both buttons */
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-black {
    background-color: #ff0000; /* Black color */
}

.btn-black:hover {
    background-color: #333; /* Darker gray on hover */
}

.btn-red2 {
    background-color: #e74c3c; /* Red color */
}

.btn-red2:hover {
    background-color: #333; /* Darker red on hover */
}

h2 {
    font-size: 28px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.profile-section {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.profile-section h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.profile-section form input[type="email"],
.profile-section form input[type="file"],
.profile-section form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

.profile-section form button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.profile-section form button:hover {
    background-color: #0056b3;
}

.profile-photo-container {
    width: 220px;
    height: 220px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

textarea {
    resize: none;
}

label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.status-updates, .status, .replies, .reply {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.status {
    margin-bottom: 15px;
}

.replies {
    margin-left: 20px;
    background-color: #ffffff;
    border-left: 3px solid #007bff;
}

.reply {
    margin-bottom: 10px;
    padding-left: 10px;
}

textarea {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    resize: none;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
