/* Reset default margin & padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Cabin', sans-serif;
    text-align: center;
    background-color: black;
    letter-spacing: 0.5px;

}

/* Centering the login container */
.container {
    width: 100%;
    max-width: 600px;
    /* Removed 400px restriction */
}

.boder_container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Full width for machine row */
.machine-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

/* Machine label and value */
.machine-label,
.machine-value {
    font-size: 16px;
    font-weight: bold;
    color: #00AEEF;
    /* Blue color */
}

.machine-label {
    text-align: left;
    flex: 1;
}

.machine-value {
    text-align: right;
    flex: 1;
}

/* Custom Input Field */
.custom-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #00AEEF;
    background-color: #f8f9fa;
    border: 2px solid #00AEEF;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Placeholder Styling */
.custom-input::placeholder {
    color: #00AEEF;
    font-size: 14px;
}

/* Input Focus Effect */
.custom-input:focus {
    border-color: #0088cc;
    background-color: #ffffff;
}

/* Button Styling */
.custom-button {
    background-color: #00AEEF;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 2px;
}

/* Button Hover Effect */
.custom-button:hover {
    background-color: #0088cc;
}

.custom-button:disabled {
    opacity: 0.3;
}


.text-main {
    color: #7CCDF6;
}

.logo-box {
    color: #00AEEF;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #00AEEF
}

.machine-detail {
    background-color: white
}