.btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #1976d2;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    background-color: #135ba1;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-small {
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 4px;
    background: #1976d2;
    color: white;
    text-decoration: none;
	cursor: pointer;
	border: 0;
}

.btn-small:hover {
    background: #135ba1;
}

.btn-danger {
    background: #d32f2f;
}

.btn-danger:hover {
    background: #9a2424;
}


.btn-primary {
    margin-top: 20px;
    background: #1976d2;
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #135ba1;
    transform: translateY(-2px);
}