body    { font-family:"Trebuchet MS",verdana,Arial; font-size:12pt; color:#000000; }


/* Header Styling */
.main-header {
    background:  
                url('https://blog.syracause.org/background.jpg') #ffffff;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #ff6600;
}
/* Ensure the container inside stays centered and readable */
.main-header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-header h1 {
    margin: 0 0 20px 0;
    text-align: center;
    /* Create the border effect using 4 shadows at 1px offsets */
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        /* The drop shadow (offset 3px right, 3px down) */
         3px  3px 5px #000000;
}

/* Form Layouts */
.post-form, .login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

/* Inputs & Buttons */
input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 100px;
    resize: vertical;
}

.btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background: #0056b3;
}

/* Status & Links */
.status-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

.lock-link {
    color: #ff4d4d;
    text-decoration: none;
}

.success-msg {
    color: #28a745;
    background: #e9f7ef;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}