/* Global font style */
body, button, .btn {
    font-family: "Nanum Gothic", sans-serif;
}

/* Form styles */

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

button, .btn {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none; /* For anchor buttons */
    display: inline-block; /* For anchor buttons */
}

button.btn-primary {
    background-color: #007bff;
    color: white;
}

button.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    /*background-color: #6c757d;*/
    color: white;
    margin-left: 10px; /* Space between buttons */
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Optional styling for the character count indicator */
#description-count {
    margin-top: 5px;
    font-size: 0.9em;
    color: #555;
}

        .profile-container {
            max-width: 1200px;
            margin: 20px auto;
            border-radius: 8px;
            background-color: #fff;
        }

        .profile-header {
            text-align: left;
            margin-bottom: 20px;
        }

        .profile-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .profile-info label {
            font-weight: bold;
        }

input::placeholder {
    color: #cccccc; /* Change this to your desired color */
    font-family: "Nanum Gothic", sans-serif; /* Use the same font as the rest of the site */
    font-size: 16px; /* Adjust the font size if necessary */
}

/* For older versions of browsers */
input::-webkit-input-placeholder {
    color: #cccccc;
    font-family: "Nanum Gothic", sans-serif;
    font-size: 16px;
}

input::-moz-placeholder {
    color: #cccccc;
    font-family: "Nanum Gothic", sans-serif;
    font-size: 16px;
}

input:-ms-input-placeholder {
    color: #cccccc;
    font-family: "Nanum Gothic", sans-serif;
    font-size: 16px;
}

input:-moz-placeholder {
    color: #cccccc;
    font-family: "Nanum Gothic", sans-serif;
    font-size: 16px;
}

    .status-pill {
        display: inline-block;
        padding: 0.25em 0.75em;
        border-radius: 12px;
        color: white;
        font-size: 0.875em;
        font-weight: bold;
        text-align: center;
    }

    .status-approved {
        background-color: #28a745; /* Green */
    }

    .status-pending {
        background-color: #ffc107; /* Yellow */
    }

    .status-rejected {
        background-color: #dc3545; /* Red */
    }

    .status-draft {
        background-color: #636363; /* Red */
    }

.headline-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.stat {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;  /* Increased border-radius for more rounded edges */
    text-align: center;
    width: 320px;  /* Fixed width */
    margin: 0 auto; /* Center the stat block horizontally */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow for depth */
}

.stat h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.stat h1 {
    font-size: 2em;
    font-weight: bold;
}

.since-date {
    margin-top: 5px;
    font-size: 1em;
    color: #636363;
}

.gray-rows tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* Gray */
}

.gray-rows tbody tr:nth-child(odd) {
    background-color: #ffffff; /* White */
}

.decline-box {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin: 20px 0;
}