/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
h1 {
    background-color: #333;
    color: white;
    padding: 20px;
    margin: 0;
}

/* Navigation Links */
a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    margin: 10px;
}

a:hover {
    text-decoration: underline;
}

/* News Section */
.news {
    width: 60%;
    background: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.news h3 {
    color: #333;
    margin-bottom: 10px;
}

.news p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.news small {
    display: block;
    text-align: right;
    color: #777;
    margin-top: 10px;
}

/* Forms (Login & Admin Panel) */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 40%;
    margin: 20px auto;
}

input[type="text"], 
input[type="password"], 
textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Table for Ports Page */
table {
    width: 50%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news, form, table {
        width: 90%;
    }
}
