#inkryptus-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: sans-serif;
}
.inkryptus-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.inkryptus-banner-content p {
    margin: 0;
    padding-right: 20px;
    font-size: 14px;
    flex-grow: 1;
}
#inkryptus-cookie-banner a {
    color: #f4b14a;
    text-decoration: underline;
}
.inkryptus-actions button {
    background-color: #f4b14a;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
    transition: background-color 0.3s;
}
.inkryptus-actions button:hover {
    background-color: #f4b14a;
}
.inkryptus-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}
#inkryptus-preferences-modal {
    background-color: #222;
    color: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
#inkryptus-preferences-modal h3 {
    color: #f4b14a;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}
.inkryptus-cookie-category {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #333;
    border-radius: 4px;
}
.inkryptus-cookie-category label {
    display: block;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 5px;
}
.inkryptus-cookie-category input[type="checkbox"] {
    margin-right: 10px;
}
.inkryptus-cookie-category .description {
    font-size: 12px;
    margin: 0;
    padding-left: 30px;
    color: #ccc;
}
.inkryptus-modal-actions {
    margin-top: 20px;
    text-align: right;
}
.inkryptus-modal-actions button {
    background-color: #ffa621;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
    transition: background-color 0.3s;
}
#inkryptus-close-modal {
    background-color: #777;
}
.inkryptus-modal-actions button:hover {
     background-color: #f4b14a;
}
#inkryptus-close-modal:hover {
    background-color: #555;
}