/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #2c2f33;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Title */
h1 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #f1c40f;
}

/* Items - Display as a top-down list with spacing */
.item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

/* Item Row (Larger, Thicker, More Spacing) */
.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    max-width: 650px;
    margin: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    min-height: 100px; /* Thicker Row */
}

.item:hover {
    background-color: #2a2e33;
}

/* Item Image */
.item-image {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
}

/* Placeholder for No Image */
.no-image {
    width: 100px;
    height: 100px;
    background-color: #555;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
}

/* Item Details (Name, Category, Price) */
.item-info {
    flex: 1;
    text-align: left;
    padding-left: 15px;
}

/* Name */
.item-info h3 {
    margin: 0;
    font-size: 20px;
}

/* Category */
.item-info p.category {
    margin: 5px 0;
    font-size: 14px;
    color: #b8b8b8;
}

/* Price (Aligned Right) */
.item-price {
    font-size: 18px;
    font-weight: bold;
    color: #f1c40f;
    text-align: right;
    min-width: 100px;
}

/* Manage Items Page - Styled to Match Main Page */
.manage-container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #23272a;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Title Styling */
.manage-container h2 {
    font-size: 24px;
    color: #f1c40f;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Back Button */
.back-button {
    display: inline-block;
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    text-decoration: underline;
}

/* Form Styling */
.manage-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: auto;
    background-color: #2c2f33;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Inputs */
.manage-form input, .manage-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #3a3d42;
    color: white;
    font-size: 14px;
}

/* Gold, Silver, Copper Fields (Side by Side) */
.cost-input {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.cost-input input {
    flex: 1;
    text-align: center;
}

/* Submit Button */
.manage-form button {
    background-color: #f1c40f;
    color: black;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.manage-form button:hover {
    background-color: #d4ac0d;
}

/* Logout Link */
.logout-link {
    display: block;
    color: #f1c40f;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
}

.logout-link:hover {
    text-decoration: underline;
}

.item-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    background-color: #23272a;
    border-radius: 8px;
    transition: 0.3s;
}

.item-header:hover {
    background-color: #2a2e33;
}

.item-details {
    padding: 15px;
    background-color: #1e2124;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
}

.price-chart {
    width: 100%;
    max-height: 200px;
    margin-top: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    padding: 10px 20px;
    border-bottom: 2px solid #f1c40f;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
    margin-right: 15px;
}

.nav-title {
    font-size: 24px;
    font-weight: bold;
    color: #f1c40f;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f1c40f;
}

.nav-right {
    color: white;
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    padding: 15px 20px;
    border-bottom: 3px solid #f1c40f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.nav-title {
    font-size: 26px;
    font-weight: bold;
    color: #f1c40f;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #f1c40f;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-right {
    color: white;
}

/* Container Styling */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c2f33;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Role-Based Pages */
.user-list-container, .slaughterhouse-container {
    background-color: #23272a;
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin-top: 20px;
}

.user-list-container h2, .slaughterhouse-container h2 {
    color: #f1c40f;
    margin-bottom: 15px;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th, .user-table td {
    padding: 12px;
    border-bottom: 1px solid #f1c40f;
    text-align: left;
}

.user-table th {
    background-color: #1e2124;
    color: white;
}

.user-table tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

button {
    background-color: #f1c40f;
    color: black;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #ffcc00;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-right {
        text-align: center;
        margin-top: 10px;
    }
}

/* Search Bar & Filter Styling */
.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.search-container input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #f1c40f;
    border-radius: 8px;
    background-color: #23272a;
    color: white;
    outline: none;
}

.search-container input[type="text"]::placeholder {
    color: #b3b3b3;
}

.search-container select {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #f1c40f;
    border-radius: 8px;
    background-color: #23272a;
    color: white;
    outline: none;
}

/* Hover and Focus Effects */
.search-container input[type="text"]:focus,
.search-container select:focus {
    border-color: #ffcc00;
}

.search-container input[type="text"]:hover,
.search-container select:hover {
    background-color: #2c2f33;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .search-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    padding: 15px 20px;
    border-bottom: 3px solid #f1c40f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.nav-title {
    font-size: 26px;
    font-weight: bold;
    color: #f1c40f;
}

.nav-links, .nav-right {
    display: flex;
    gap: 15px;
}

.nav-links a, .nav-right a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover, .nav-right a:hover {
    color: #f1c40f;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Specific Styling for Right-Aligned Links */
.nav-right a {
    background-color: #1e2124;
    border: 2px solid #f1c40f;
}

.nav-right a:hover {
    background-color: #f1c40f;
    color: black;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links, .nav-right {
        flex-direction: column;
        gap: 10px;
    }
}


/* Rarity Borders */
.item.common {
    border: 2px solid #b3b3b3; /* Grey */
}

.item.uncommon {
    border: 2px solid #1eff00; /* Green */
}

.item.rare {
    border: 2px solid #0070dd; /* Blue */
}

.item.heroic {
    border: 2px solid #ff8000; /* Purple */
}

.item.epic {
    border: 2px solid #a335ee; /* Orange */
}

.item.legendary {
    border: 2px solid #e6cc80; /* Gold */
}

.item-actions {
    display: flex;
    gap: 10px;
}

.item-actions button {
    background-color: #f1c40f;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.item-actions button:hover {
    background-color: #ffcc00;
}

/* WTS/WTB Container */
.item-tags {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* WTS/WTB Display Tags (Who is selling/buying) */
.wts-tag, .wtb-tag {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.wts-tag {
    background-color: green;
    color: white;
}

.wtb-tag {
    background-color: red;
    color: white;
}

/* WTS/WTB Container */
.item-tags-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align to the right */
    justify-content: center;
    gap: 5px;
    margin-left: auto; /* Pushes to the right */
}

/* WTS/WTB Display Tags (Who is selling/buying) */
.wts-tag, .wtb-tag {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.wts-tag {
    background-color: green;
    color: white;
}

.wtb-tag {
    background-color: red;
    color: white;
}

/* WTS/WTB Buttons (Inside the Box, Left-Aligned) */
.item-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Button Styles */
.wts-button, .wtb-button {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* Default Button Colors */
.wts-button {
    background-color: #f1c40f;
    color: black;
}

.wtb-button {
    background-color: red;
    color: white;
}

/* Hover Effects */
.wts-button:hover {
    background-color: #ffcc00;
}

.wtb-button:hover {
    background-color: darkred;
}

/* Active (Clicked) Button State */
.wts-button.active {
    background-color: #ffcc00;
    border: 2px solid black;
}

.wtb-button.active {
    background-color: darkred;
    border: 2px solid black;
}
/* Main Site Styling - Updated for Price Colors & Item Name Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #2c2f33;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #23272a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #f1c40f;
    text-transform: uppercase;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    max-width: 650px;
    margin: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    min-height: 100px;
}

.item:hover {
    background-color: #2a2e33;
}

/* Item Name Styling */
.item h3 {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Pricing Colors */
.item-price-styled {
    font-weight: bold;
    font-size: 1rem;
}

.gold-text {
    color: #FFD700; /* Gold */
    font-weight: bold;
}

.silver-text {
    color: #C0C0C0; /* Silver */
    font-weight: bold;
}

.copper-text {
    color: #B87333; /* Copper */
    font-weight: bold;
}
/* General Modal Styling */
/* Global Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    background-color: #23272a;
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 2px solid #f1c40f;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Title */
.modal-content h3 {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 15px;
}

/* Modal Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close:hover {
    color: #f1c40f;
}

/* Input Fields */
.modal-content label {
    display: block;
    text-align: left;
    font-size: 16px;
    color: white;
    margin-top: 10px;
}

.modal-content select,
.modal-content input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 2px solid #f1c40f;
    background-color: #2c2f33;
    color: white;
    font-size: 16px;
}

/* Submit Button */
.modal-content button {
    background-color: #f1c40f;
    color: black;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 15px;
}

.modal-content button:hover {
    background-color: #d4ac0d;
}

/* Threat Level Styling */
input[type="range"] {
    width: 100%;
    cursor: pointer;
    background: linear-gradient(to right, green 0%, yellow 50%, red 100%);
    border-radius: 5px;
    height: 8px;
    outline: none;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.auth-form {
    background-color: #23272a;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 2px solid #f1c40f;
    margin: auto;
}

.auth-form label {
    display: block;
    text-align: left;
    font-size: 16px;
    color: white;
    margin-top: 10px;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 2px solid #f1c40f;
    background-color: #2c2f33;
    color: white;
    font-size: 16px;
}

.auth-form button {
    background-color: #f1c40f;
    color: black;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 15px;
}

.auth-form button:hover {
    background-color: #d4ac0d;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}
.login-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f1c40f;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.3s;
}

.login-button:hover {
    background-color: #d4ac0d;
}
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.tab-button {
    background-color: #2c2f33;
    color: white;
    padding: 10px 20px;
    border: 2px solid #f1c40f;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
    font-size: 16px;
}

.tab-button.active {
    background-color: #f1c40f;
    color: black;
}

.tab-button:hover {
    background-color: #d4ac0d;
}
/* Inbox Styling */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #23272a;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.page-title {
    text-align: center;
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 20px;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-item {
    background-color: #2c2f33;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #7289da; /* Discord Blue */
    transition: 0.3s;
}

.message-item.unread {
    border-left: 5px solid #f1c40f; /* Yellow for unread messages */
    background-color: #3a3d42;
}

.message-header {
    display: flex;
    justify-content: space-between;
    color: #b8b8b8;
    font-size: 14px;
}

.message-time {
    font-size: 12px;
    color: #b8b8b8;
}

.message-text {
    margin-top: 10px;
    font-size: 16px;
    color: white;
}

.message-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

button.mark-read-btn {
    background-color: #f1c40f;
    color: black;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button.mark-read-btn:hover {
    background-color: #d4ac0d;
}

button.reply-btn {
    background-color: #7289da;
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button.reply-btn:hover {
    background-color: #5a6fa0;
}

.no-messages {
    text-align: center;
    font-size: 18px;
    color: #b8b8b8;
}
/* Unread Messages Badge */
.notification-badge {
    background-color: #f1c40f;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 5px;
    margin-left: 5px;
}
/* Ensure the modal is hidden initially */
.modal {
    display: none; /* This prevents it from showing on page load */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card {
    display: flex;
    background-color: #2c2f33;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 600px;
    justify-content: space-between;
    align-items: center;
}

.avatar-section {
    text-align: center;
}

.avatar-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #f1c40f;
    margin-bottom: 10px;
}

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

.styled-input, .styled-select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #f1c40f;
    background-color: #23272a;
    color: white;
    font-size: 16px;
}

.update-btn {
    background-color: #f1c40f;
    color: black;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.update-btn:hover {
    background-color: #d4ac0d;
}

/* Profile Container */
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Card */
.profile-card {
    display: flex;
    flex-direction: column;
    background-color: #2c2f33;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 600px;
    align-items: center;
    text-align: center;
}

.avatar-section {
    text-align: center;
}

.avatar-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #f1c40f;
    margin-bottom: 10px;
}

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

/* Inputs and Buttons */
.styled-input, .styled-select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #f1c40f;
    background-color: #23272a;
    color: white;
    font-size: 16px;
}

.update-btn {
    background-color: #f1c40f;
    color: black;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.update-btn:hover {
    background-color: #d4ac0d;
}

/* 📌 Left-Aligned Artisan Skills */
.artisan-skills-container {
    width: 100%;
    background-color: #2c2f33;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.artisan-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding-left: 15px;
}

.artisan-skill-label {
    background-color: #23272a;
    padding: 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: white;
    cursor: pointer;
    width: fit-content;
}

.artisan-skill-label input {
    margin-right: 10px;
}

/* Button for Updating Skills */
.artisan-skills-container .update-btn {
    margin-top: 15px;
}

/* Add Item Button */
.add-item-btn {
    background-color: #7289da;
    color: white;
    font-size: 16px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.add-item-btn:hover {
    background-color: #5a6ea9;
}
/* 📌 Artisan Skills Styling */
.artisan-skills-container {
    width: 100%;
    background-color: #2c2f33;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    margin-top: 20px;
}

.artisan-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artisan-skill-label {
    background-color: #23272a;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
    width: 100%;
}

.artisan-skill-label select {
    margin-left: 10px;
    background-color: #2c2f33;
    border: 2px solid #f1c40f;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}
.organisation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin: 10px 0;
    background: #2c2f33;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: white;
    transition: transform 0.2s ease-in-out;
}

.organisation-card:hover {
    transform: scale(1.02);
}

.player-info, .guild-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.relation {
    font-weight: bold;
    color: #FFD700;
}

.threat-meter-container {
    width: 100px;
    height: 10px;
    background: #555;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.threat-meter {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
    background: linear-gradient(to right, green, yellow, red);
}

.threat-level {
    font-weight: bold;
    color: white;
}
