.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 1rem;
}

.alert {
    margin-bottom: 1rem;
}

.card {
    margin-top: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
}

h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-label {
    font-weight: 500;
}

.btn-primary {
    padding: 0.5rem 2rem;
} 

.property-card {
    height: 100%;
}

.property-card .card {
    height: 100%;
    transition: transform 0.2s;
}

.property-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.property-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.property-actions .btn {
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
}

.beds24-info {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Progress Modal */
.progress {
    height: 25px;
}

.progress-bar {
    transition: width 0.3s ease-in-out;
}

#syncStatus {
    max-height: 200px;
    overflow-y: auto;
} 

.room-mapping-item {
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.room-mapping-item:hover {
    background-color: #fff;
}

.room-mapping-item h5 {
    margin-bottom: 0.5rem;
}

.room-mapping-item .text-success,
.room-mapping-item .text-warning {
    font-size: 0.9rem;
    font-weight: 500;
} 