.netflix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #16213e;
    border-radius: 10px;
    overflow: hidden;
}

.netflix-table th, .netflix-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.netflix-table th {
    background-color: #1a1a2e;
    color: #00aaff;
    font-weight: bold;
}

.netflix-table tr:hover {
    background-color: rgba(0, 170, 255, 0.1);
}

.netflix-table .price {
    color: white;
    font-weight: bold;
}

.netflix-table .checkbox {
    text-align: center;
}

.netflix-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00aaff;
}
ul {
    list-style-type: none;
}

.section-title {
    color: #00aaff;
    margin: 30px 0 15px 0;
    font-size: 20px;
    border-left: 4px solid #00aaff;
    padding-left: 10px;
}

.order-btn {
    display: inline-block;
    background-color: #00aaff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #0088cc;
}

.note-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.note-box h3 {
    color: #ffc107;
    margin-top: 0;
    margin-bottom: 10px;
}

.note-box ul {
    margin: 0;
    padding-left: 20px;
}

.note-box li {
    margin-bottom: 5px;
}

.custom-comment-box {
    background: #2b3768;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    color: #ffffff;
}

.custom-comment-box p {
    margin-bottom: 20px;
    font-size: 16px;
}

.comment-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.comment-btn:hover {
    background: #0088cc;
    transform: translateY(-2px);
}

.comment-btn i {
    margin-right: 8px;
}

.section-title {
    color: #ffffff;
    margin: 30px 0 20px;
    font-size: 1.5rem;
    text-align: center;
}

/* Square BUAT NOKOS AJA  */
input[type="radio"][name="nokos"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #00aaff;
    border-radius: 3px; /* Less rounded for square look */
    background: #fff;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    transition: border-color 0.2s;
}

input[type="radio"][name="nokos"]:checked {
    background: #00aaff;
    border-color: #0077cc;
}

input[type="radio"][name="nokos"]:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 3px auto;
    background: #fff;
    border-radius: 2px;
    transition: background 0.2s;
}

input[type="radio"][name="nokos"]:checked:after {
    background: #fff;
}
