﻿* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: #f5f5f5;
}

h2 {
    color: #333;
}

input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

    input:focus {
        border-color: #007bff;
        outline: none;
    }

.awb {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

    .awb:first-child {
        border-radius: 5px 5px 0 0;
    }

    .awb:last-child {
        border-radius: 0 0 5px 5px;
        border-bottom: none;
    }

    .awb button {
        background: #dc3545;
        color: white;
        border: none;
        padding: 5px 12px;
        border-radius: 3px;
        cursor: pointer;
    }

#actions {
    margin: 15px 0;
}

    #actions button {
        padding: 10px 20px;
        margin-right: 8px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        #actions button:first-child {
            background: #007bff;
            color: white;
        }

        #actions button:last-child {
            background: #6c757d;
            color: white;
        }

#count {
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

#list {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
