*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  padding: 20px; 
  background-color: #f8fafc;
  color: #2d3748;
  line-height: 1.6;
}

.container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    height: 50px;
}

.logo {
    width: 180px;
}

/* Title Header */
.page-title {
    font-size: 22px;
    font-weight: 500;
    color: #3182ce;
    text-align: center;
    margin-bottom: 10px;
}

/* Id Selector */
#id_selector {
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #514f4f;
}
#id_selector select {
    font-size: 12px;
    color: #514f4f;
    padding: 4px 12px;
    border: 1px solid #514f4f;
    border-radius: 3px;
}

/* Form Container */
#password {
    padding: 5px 0;
    width: 200px;
}

#password:focus {
    outline: none;
}

.confirmation {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    display: none;
}

.confirmation p {
    color: #e53e3e;
    font-weight: 500;
    margin-bottom: 5px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.delete-button {
    margin: 10px auto;
    background-color: #e53e3e;
    color: white;
}

.delete-button:hover {
    background-color: #c53030;
}

.cancel-button {
    background-color: #e2e8f0;
    color: #4a5568;
    margin-right: 10px;
}

.cancel-button:hover {
    background-color: #cbd5e0;
}

button:disabled {
    cursor: not-allowed;        
    opacity: 0.7;      
}

/* Media Queries */
@media (max-width: 768px) {
    #id_selector {
        flex-direction: column;
        align-items: stretch;
    }
    #id_selector select {
        width: 100%;
    }
    #password, #cancelButton, #confirmDeleteButton {
        width: 100%;
    }
    #cancelButton {
        margin-top: 10px;
    }
} 