.diplomatic-missions-frontend {
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.search-section {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.mission-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.mission-details p {
    margin: 8px 0;
    line-height: 1.4;
}

.mission-details strong {
    color: #555;
}
#mission_card_table thead th{
    text-align: center;
    background: #0073aa;
    color: #fff;

}
#mission_card_table th, #mission_card_table td{
    max-width: 200px;
    word-break: break-word;
    padding: 5px;
        /*border: 2px solid #ccc;*/
}
#mission_card_table{
    max-width: 100%;
}
#frontend-search-btn{
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;

    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
}

table {
    width: 100%; /* Make the table span the full width of its container */
    border-collapse: collapse; /* Collapse table borders for a cleaner look */
    background-color: #F0F8FF; /* Lightest blue for the table background (AliceBlue) */
    table-layout: fixed;
    overflow-wrap: break-word;
}

th, td {
    border: 2px solid #ADD8E6; /* Light blue border for cells */
    padding: 8px; /* Add padding inside cells for readability */

}

th {
    background-color: #B0E0E6; /* PowderBlue for table headers */
    color: #333; /* Darker text color for contrast */
}

tr:nth-child(even) {
    /*background-color: #ccc;*/ /* Light Cyan for even rows, creating a subtle stripe effect */
}

tr:hover {
    background-color: #ADD8E6; /* LightBlue on hover for rows */
    cursor: pointer; /* Indicate interactivity on hover */
}