/* Container for the plugin */
#ccc-search {
    max-width:100%;
    margin: 10px auto;
    font-family: Arial, sans-serif;
}

/* Search input field */
#ccc-country-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Country result block */
.ccc-country-result {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #0073aa;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
}

/* Flag image */
.ccc-country-result img {
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Country name and code */
.ccc-country-result strong {
    font-size: 18px;
    color: #0073aa;
}

/* Category and charge */
.ccc-category {
    display: inline-block;
    margin-top: 5px;
    background: #eef6ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

/* Fallback message */
#ccc-results p {
    font-style: italic;
    color: #666;
}

/* Responsive */
@media (max-width: 500px) {
    #ccc-country-input {
        font-size: 14px;
    }

    .ccc-category {
        display: block;
        margin-top: 8px;
    }
}
.ccc-country-list
{
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
   
}
.ccc-country-item
{
        padding:3%;
        background-color: #fff;
        width:100%;
            box-shadow: 3px 4px 13px 12px rgba(208, 215.99999999999997, 255, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-left:2%;
    align-items: center;
  flex: 1;
  flex-basis: 20%;
  margin-bottom:2%;

}